Installer.com Docs
PATCH
/api/v1/order/{orderId}

Partially update an order. Only fields present in the payload are changed. customFields is keyed by each field's customId; unknown keys are rejected.

AuthorizationBearer <token>

Installer.com auth token

In: header

Path Parameters

orderId*string
Formatuuid

Request Body

application/json

Order patch payload

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PATCH "https://api.installer.com/api/v1/order/497f6eca-6276-4993-bfeb-53cbbbba6f08" \  -H "Content-Type: application/json" \  -d '{}'
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "displayId": "string",
  "name": "string",
  "description": "string",
  "externalId": "string",
  "contactPersonName": "string",
  "email": "string",
  "phoneNumber": "string",
  "customFields": {
    "property1": "string",
    "property2": "string"
  }
}