Get a custom Attribute

Retrieve a single custom attributeGe

Get Custom Attribute

GET https://{{account_id}}.acquire.io/api/v1/crm/objects/object-field/{{custom_attributeId}}

Get details about a specific custom attribute.

Path Parameters

Name
Type
Description

custom_attributeId

integer

The ID of the custom attribute

Query Parameters

Name
Type
Description

select

array

the array of columns to get

relations

string

specify the relations

Headers

Name
Type
Description

Authorization

string

Bearer {{api_key}}

{
  "data": {
    "id": 1,
    "object": "contact",
    "key": "name",
    "type": "text",
    "config": {
      "input": {
        "type": "text",
        "label": "Name",
        "required": false,
        "placeholder": "",
        "validationType": "format",
        "validationFormat": "any",
        "requiredErrorMessage": "Please add an attribute name.",
        "validationErrorMessage": "Oops! Seems incorrect format that you entered. Can you please recheck your name?"
      },
      "label": "Name",
      "backend": {
        "list": false
      },
      "capture": [
        "api"
      ],
      "online_order": 2,
      "offline_order": 2
    },
    "system": "yes"
  }
}

Last updated