Export transformation block

Export transformation block

Download the source code for this block.

POSThttps://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/transformation/{transformationId}/export
Path parameters
organizationId*integer

Organization ID

transformationId*integer

Transformation block ID.

Response

OK

Body
success*boolean

Whether the operation succeeded

errorstring

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

id*integer

Job identifier. Status updates will include this identifier.

Example: 12873488112
exportUrl*string
Request
const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/transformation/{transformationId}/export', {
    method: 'POST',
    headers: {},
});
const data = await response.json();
Response
{
  "success": false,
  "error": "text",
  "id": 12873488112,
  "exportUrl": "text"
}

Last updated