Get all organization data exports

Get all organization data exports

get

Get all data exports for an organization.

Authorizations
Path parameters
organizationIdintegerrequired

Organization ID

Query parameters
limitintegeroptional

Maximum number of results

offsetintegeroptional

Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.

Responses
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/exports' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "success": true,
  "error": "text",
  "exports": [
    {
      "id": 1,
      "created": "2025-03-26T12:59:19.291Z",
      "createdByUser": {
        "id": 1,
        "name": "text",
        "username": "text",
        "photo": "text"
      },
      "jobId": 1,
      "jobFinished": true,
      "jobFinishedSuccessful": true,
      "description": "text",
      "expirationDate": "2025-03-26T12:59:19.291Z",
      "downloadUrl": "text"
    }
  ],
  "totalCount": 1
}

Last updated

Was this helpful?