v1

latestOpenAPI 3.0.0Proprietary2026-07-26130282259.8 KB
jobs

Update Job Custom Fields

Use this endpoint to update multiple custom field values for a Job. The limit of the Custom Field list to update cannot be greater than 120. If the custom field type is Text, the maximum lenght of the text is 500 characters. Any text beyond that limit that will be truncated.

This endpoint is rate limited. Use the RateLimit-* response headers to check current limits and remaining quota.

put/jobs/{jobId}/custom-fields

Path parameters

jobIdstring uuid required

The job's unique identifier

Request body

Example request

{
  "customFields": [
    {
      "id": "228db892-3b49-4455-b839-ffd8576d8731",
      "values": [
        "1",
        "2",
        "3"
      ]
    }
  ]
}

Response

No Content