For the complete documentation index, see llms.txt. This page is also available as Markdown.

Settings Labels

Get Object Labels

get

Returns the account's own terminology for its core objects (quote/estimate, work order) so integrations can render the account's term.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

The account's object labels

application/json

The account's own terminology for its core objects (e.g. Quote / Estimate / Proposal / Bid). Use these so integrations can render the account's term instead of a hardcoded label.

get/settings/labels
GET /v2/settings/labels HTTP/1.1
Host: openapi.paintscout.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "quote": {
    "value": "Estimate",
    "plural": "Estimates"
  },
  "workOrder": {
    "value": "Work Order",
    "plural": "Work Orders"
  }
}

Last updated

Was this helpful?