Installer.com Docs
API ReferenceV1
POST
/api/v1/order-tags

Creates a new order tag

AuthorizationBearer <token>

Installer.com auth token

In: header

Request Body

application/json

Create order tags payload

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "http://localhost:8000/api/v1/order-tags" \  -H "Content-Type: application/json" \  -d '[    {      "name": "string",      "color": "string",      "isShared": true    }  ]'
[
  {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "createdAt": "string",
    "updatedAt": "string",
    "tenantId": "f97df110-f4de-492e-8849-4a6af68026b0",
    "name": "string",
    "color": "string",
    "isShared": true
  }
]