POST
/
v1
/
transforms
/
{transform_id}
/
rows
/
{row_id}
/
references
Retrieve Or Generate References On Row
curl --request POST \
  --url https://api.runtrellis.com/v1/transforms/{transform_id}/rows/{row_id}/references \
  --header 'Authorization: <api-key>'
{
"message": "<string>",
"data": {
"references": [
{
"id": "<string>",
"asset": {
"id": "<string>",
"ext_file_name": "<string>",
"ext_file_id": "<string>",
"url": "<string>"
},
"operation": {
"id": "<string>",
"name": "<string>"
},
"page_number": 123,
"page_dimensions": {
"width": 123,
"height": 123
},
"status": "pending",
"bounding_box": {
"x1": 123,
"y1": 123,
"x2": 123,
"y2": 123
}
}
]
}
}

Authorizations

Authorization
string
header
required

Headers

API-Version
string

Pass in an API version to guarantee a consistent response format.

The latest version should be used for all new API calls. Existing API calls should be updated to the latest version when possible.

Valid versions:

  • Latest API version (recommended): 2025-03

  • Previous API version (maintenance mode): 2025-02

If no API version header is included, the response format is considered unstable and could change without notice (not recommended).

Path Parameters

transform_id
string
required
row_id
string
required

Response

200
application/json

Successful Response

The response is of type object.