Skip to main content
POST
/
orders
Create an order
curl --request POST \
  --url https://api.titletrackr.com/api/v1/orders \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "order_number": "<string>",
  "due_date": "2023-12-25",
  "address": "<string>",
  "city": "<string>",
  "county": "<string>",
  "state": "<string>",
  "custom_fields": {}
}
'
{
  "data": {
    "id": "<string>",
    "order_number": "<string>",
    "status": "<string>",
    "due_date": "2023-12-25",
    "address": "<string>",
    "city": "<string>",
    "county": "<string>",
    "state": "<string>",
    "custom_fields": {},
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

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.

Body

application/json
order_number
string
required
Maximum string length: 255
due_date
string<date>
address
string
city
string
county
string
state
string
custom_fields
object

Response

Order created

data
object