Add a custom attribute

Add a new custom attribute.

Add Custom Attribute

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

API to add new custom attribute to the list of custom attributes. An object must be passed in to the body of the request.

Headers

NameTypeDescription

Authorization

string

Bearer {{api_key}}

Request Body

NameTypeDescription

object

string

The object that the custom attribute will map to

type

string

The type of custom attribute

key

string

Name and key of custom attribute

object

object

Body object

{
  "data": {
    "object": "string",
    "key": "string",
    "type": "text",
    "config": {},
    "system": "string",
    "id": 35
  }
}

Body(raw)

{
  "object": "string",
  "key": "string",
  "type": "text",
  "config": {},
  "system": "string"
}

Last updated