GET
/
upload
/
{id}
/
metadata
/
Get upload metadata
curl --request GET \
  --url https://app.dromo.io/api/v1/upload/{id}/metadata/ \
  --header 'X-Dromo-License-Key: <api-key>'
{
  "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",
    "download_url": "https://dromo-imports-prod.s3.us-west-2.amazonaws.com/test-key-123?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIARY5HJCMTO2AUIBEU%2F20230227%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20230227T160315Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=0998ccd9c93142498784d1046bc2709612430f6a0a573572f743e16896d4c498"
  },
  "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.

Path Parameters

id
string<uuid>
required

Response

200 - application/json

Upload metadata

The response is of type object.