# Get a custom Attribute

## Get Custom Attribute

<mark style="color:blue;">`GET`</mark> `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}} |

{% tabs %}
{% tab title="200 " %}

```
{
  "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"
  }
}
```

{% endtab %}
{% endtabs %}
