POST
/
v1
/
transforms
/
{transform_id}
/
rows
curl --request POST \
  --url https://api.runtrellis.com/v1/transforms/{transform_id}/rows \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "rows": [
    {
      "operations": [
        {
          "id": "op_xxx",
          "value": {
            "assets": [
              {
                "ext_file_name": "test",
                "ext_file_id": "test_1234",
                "url": "https://example.com"
              }
            ]
          }
        },
        {
          "id": "op_xxx",
          "value": ""
        }
      ]
    }
  ]
}'
{
  "message": "<string>",
  "data": {
    "rows": [
      "<string>"
    ]
  }
}

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

Body

application/json
rows
object[]
required

A list of rows to add to your transformation. Each cell value must be compatible with the relevant column's type, but all cells are optional.

Example:
[
  {
    "operations": [
      {
        "id": "op_xxx",
        "value": {
          "assets": [
            {
              "ext_file_name": "test",
              "ext_file_id": "test_1234",
              "url": "https://example.com"
            }
          ]
        }
      },
      { "id": "op_xxx", "value": "" }
    ]
  }
]

Response

200
application/json
Successful Response
message
string
required
data
object
required