Search documentation
karat

+

K

User Documentation ↗
Version 2.0

Get Transformation Job Result

GET/api/v2/mediasets/{mediaSetRid}/items/{mediaItemRid}/transformationJobs/{transformationJobId}/result
Warning

This endpoint is in preview and may be modified or removed at any time. To use this endpoint, add preview=true to the request query parameters.

Gets the result of a completed transformation job. Returns the transformed media content as binary data. This endpoint will return an error if the transformation job has not completed successfully.

Third-party applications using this endpoint via OAuth2 must request the following operation scope: api:mediasets-transform.

Path parameters

mediaSetRid
string

The RID of the media set.

mediaItemRid
string

The RID of the media item.

transformationJobId
string

The ID of the transformation job.

Query parameters

preview
booleanoptional

A boolean flag that, when set to true, enables the use of beta features in preview mode.

Response body

body
string

The transformed media content.

Examples

Request

Copied!
1 2 3 curl \ \t-H "Authorization: Bearer $TOKEN" \ "https://$HOSTNAME/api/v2/mediasets/{mediaSetRid}/items/{mediaItemRid}/transformationJobs/{transformationJobId}/result?preview=true"