Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

Create CRM list

POST/v1/crm/lists
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Request body
requiredapplication/json
descriptionstring
list_typestring
Allowed:staticprocess
metadataany
namestringrequired
object_kindstringrequired
Responses
200OK
created_atstringrequired
descriptionstring | nullrequired
idstringrequired
list_typestringrequired
metadataanyrequired
namestringrequired
object_kindstringrequired
updated_atstringrequired
400Bad Request
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
401Unauthorized
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
403Forbidden
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
422Unprocessable Entity
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
500Internal Server Error
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X POST "/v1/crm/lists" \
  -H "Content-Type: application/json" \
  -d '{
  "description": "string",
  "list_type": "static",
  "metadata": "string",
  "name": "string",
  "object_kind": "string"
}'
Response
{
  "created_at": "string",
  "description": "string",
  "id": "string",
  "list_type": "string",
  "metadata": "string",
  "name": "string",
  "object_kind": "string",
  "updated_at": "string"
}