GET
/
uploads
/
Get all uploads
curl --request GET \
  --url https://app.dromo.io/api/v1/uploads/ \
  --header 'X-Dromo-License-Key: <api-key>'
{
  "start": 123,
  "end": 123,
  "total_num_uploads": 123,
  "data": [
    {
      "id": "64b07421-f291-4449-a7d4-0f2e6ab912c4",
      "import_identifier": "new products",
      "raw_upload": {
        "filename": "my_file.csv",
        "storage_key": "c82e33b1-cea6-4271-9d21-38140c13fe28-my_file.csv"
      },
      "user": {
        "id": "<string>",
        "name": "<string>",
        "email": "<string>",
        "companyId": "<string>",
        "companyName": "<string>"
      },
      "created_date": "2023-11-07T05:31:56Z",
      "upload_status": "PENDING_UPLOAD",
      "total_num_rows": 123,
      "invalid_row_indexes": [
        123
      ],
      "errors": [
        {}
      ],
      "storage_key": "64b07421-f291-4449-a7d4-0f2e6ab912c4",
      "field_order": [
        "<string>"
      ]
    }
  ]
}

Authorizations

X-Dromo-License-Key
string
header
required

This backend API key is different than your frontend license key. Please use the "Backend" license key from your Dromo Dashboard.

Query Parameters

start
number
default:0

start index

end
number
default:10000

end index, defaults to max return value, 10000

Response

200 - application/json

List uploads

The response is of type object.