v4

latestOpenAPI 3.1.02026-07-3163216290.7 KB
Contact properties

Create a contact property

Create a custom contact property.

post/v1/contacts/properties

Request body

namestring required

The name of the property. This should be in camelCase, like planName or importDate.

type'string' | 'number' | 'boolean' | 'date' required

The type of property.

Example request

{
  "name": "favoriteColor",
  "type": "string"
}

Response

Successful create.

successboolean required

Example response

{
  "success": true
}