Update a custom attribute

Update a custom attribute

Update Custom Attribute

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

Update a custom attribute. The custom_attributeId must be passed in to the endpoint as a path parameter. An object must be passed in to the body of the request.

Path Parameters

NameTypeDescription

custom_attributeId

integer

The ID of custom attribute

Headers

NameTypeDescription

Authorization

string

Bearer {{api_key}}

Request Body

NameTypeDescription

object

string

Body object

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

Body(raw)

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

Last updated