Update a contact property
PATCH/v3/contact_properties/:id
Update a contact property
Request
Path Parameters
id numberrequired
- application/json
Body
type string
Possible values: [NUMBER
, DOUBLE
, EMAIL
, SINGLE_LINE_TEXT
, MULTI_LINE_TEXT
, DATE
, URL
, DROPDOWN
, STRING
]
label string
Possible values: <= 255 characters
description string
Possible values: <= 1000 characters
contact_property_group_id number
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
data
object
id number
ID of contact property
name string
Name of contact property
label string
Label of contact property
type string
Type of contact property
description string
Description about contact property
contact_property_group_id number
ID of contact property group, contact property belongs to
group string
Name of contact property group, contact property belongs to
{
"data": {
"id": 1,
"name": "date",
"label": "Date",
"type": "DATE",
"description": "Date of joining field",
"contact_property_group_id": 1,
"group": "Group name"
}
}
Loading...