POST
/
api
/
{projectId}
/
jobs
/
export
/
original
Export original data
curl --request POST \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/export/original \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "uploaderFriendlyFilenames": true,
  "retainCrops": true
}'
{
  "success": true,
  "error": "<string>",
  "id": 12873488112
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

Body

application/json
uploaderFriendlyFilenames
boolean
required

Whether to rename the exported file names to an uploader friendly format (e.g. label.filename.cbor)

retainCrops
boolean
required

Whether to retain crops and splits (applicable to time-series data only). If this is disabled, then the original files are returned (as they were uploaded).

Response

200 - application/json

OK

success
boolean
required

Whether the operation succeeded

id
integer
required

Job identifier. Status updates will include this identifier.

Example:

12873488112

error
string

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