Create a contact property
POST/v3/contact_properties
Create a contact property
Request
- application/json
Body
type stringrequired
Possible values: [NUMBER
, DOUBLE
, EMAIL
, SINGLE_LINE_TEXT
, MULTI_LINE_TEXT
, DATE
, URL
, DROPDOWN
, STRING
]
label stringrequired
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...