Skip to main content
GET
/
v1
/
orders
/
{id}
cURL
curl --request GET \
  --url https://sandbox.api.24hourinspections.com/v1/orders/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "IOM-12124",
  "location": "3310 Castleton Dr, Killeen, TX, 76542",
  "current_status": "Verifying Scope",
  "asset_type_id": "59e2d99d-8e48-4845-acee-c0a81af2b8ef",
  "assessment_type_id": "6bed093f-62f3-4a4c-ab04-455d7ec2f27a",
  "reports": null,
  "external_id": "Loan12345",
  "notes": "Notes added while creating the order",
  "responsible_party": {
    "name": "John Doe",
    "phone": "+1-234-567-8900",
    "email": "johndoe@example.com"
  },
  "camera_holder": {
    "name": "John Doe",
    "phone": "+1-234-567-8900",
    "email": "johndoe@example.com"
  },
  "attachment": [
    {
      "type": "SCOPE_OF_WORK",
      "value": [
        {
          "description": "Plumbing- sub  !@#$%^&*()",
          "budget": 5000,
          "funded": 4000,
          "requested": 0
        }
      ],
      "content_type": "JSON"
    }
  ],
  "scope_items": {
    "items": [
      {
        "description": "Foundation-Repair settling in the floors",
        "budget": 4000,
        "funded": 0,
        "requested": 4000
      }
    ]
  },
  "webhook": {
    "url": "https://example.com/webhook",
    "trigger": "any_state_change"
  },
  "metadata": {}
}
The response includes all information associated with the order, such as its location, status, metadata, and, if applicable, scope items.

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Response

200 - application/json
id
string
required
Example:
location
string
required
Example:
current_status
string
required
Example:
asset_type_id
string
required
Example:
assessment_type_id
string
required
Example:
external_id
string
required
Example:
notes
string
required
Example:
responsible_party
object
required
camera_holder
object
required
attachment
object[]
required
scope_items
object
required
reports
object
Example:
webhook
object
metadata
object