Company logoTrust Center Documentation
API v1 ReferenceCustom fieldsId

Get a custom field template

Retrieve a specific custom field template by ID.

GET
/api/v1/custom-fields/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Response Body

application/json

curl -X GET "https://app.orbiqhq.com/api/v1/custom-fields/cft-123"
{
  "customField": {
    "id": "string",
    "title": "string",
    "collection": "accounts",
    "type": "text",
    "always_ask": true,
    "required": true,
    "display": [
      "header"
    ],
    "default_value": "string",
    "order": 0,
    "options": [
      {
        "value": "string",
        "label": [
          {
            "languages_code": "en-US",
            "translation": "string"
          }
        ]
      }
    ],
    "translations": [
      {
        "languages_code": "en-US",
        "title": "string"
      }
    ]
  }
}
Empty
Empty
Empty

How is this guide?