Skip to content

Get Excel export job

Request

Retrieves the current state of a previously created Excel export job by its identifier, including its processing status and, once available, the download details.

Path
idany, (uuid)required
Headers
X-Uberall-User-Idany, (int64)required
curl -i -X GET \
  'https://uberall.com/api/dashboard/excel-exports/{id}' \
  -H 'X-Uberall-User-Id: {X-Uberall-User-Id}'

Responses

Excel export job details

Body*/*
statusanyrequired

Response status

Example:"SUCCESS"
responseobjectrequired

Response payload

Response
{
  "status": "SUCCESS",
  "response": {
    "id": null,
    "status": "PROCESSING",
    "error": {
      "code": null,
      "message": null,
      "data": [
        {
          "param": null,
          "value": null
        }
      ]
    },
    "downloadUrl": null,
    "sendEmail": null
  }
}