GET
/
api
/
organizations
/
{organizationId}
/
exports
Get all organization data exports
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/exports \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "exports": [
    {
      "id": 123,
      "created": "2023-11-07T05:31:56Z",
      "createdByUser": {
        "id": 123,
        "name": "<string>",
        "username": "<string>",
        "photo": "<string>"
      },
      "jobId": 123,
      "jobFinished": true,
      "jobFinishedSuccessful": true,
      "description": "<string>",
      "expirationDate": "2023-11-07T05:31:56Z",
      "downloadUrl": "<string>"
    }
  ],
  "totalCount": 123
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

Query Parameters

limit
integer

Maximum number of results

offset
integer

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

Response

200 - application/json

OK

success
boolean
required

Whether the operation succeeded

exports
object[]
required

List of organization data exports.

totalCount
integer
required
error
string

Optional error description (set if 'success' was false)