Skip to main content
GET
/
order-fields
Discover order fields
curl --request GET \
  --url https://api.titletrackr.com/api/v1/order-fields \
  --header 'Authorization: Bearer <token>'
{
  "core_fields": [
    {
      "key": "<string>",
      "label": "<string>",
      "type": "<string>",
      "required": true,
      "options": [
        "<string>"
      ]
    }
  ],
  "custom_fields": [
    {
      "key": "<string>",
      "label": "<string>",
      "type": "<string>",
      "required": true,
      "options": [
        "<string>"
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.titletrackr.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Field schema

core_fields
object[]
custom_fields
object[]