Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

Create CRM custom object type

POST/v1/crm/custom-object-types
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Request body
requiredapplication/json
descriptionstring
icon_keystring
kindstringrequired
labelstringrequired
metadataany
plural_labelstring
primary_display_fieldstring
Responses
201Created
backing_entitystringrequired
backing_tablestringrequired
domainstringrequired
explicitbooleanrequired
generalizedbooleanrequired
icon_keystringrequired
kindstringrequired
labelstringrequired
plural_labelstringrequired
primary_display_fieldstringrequired
supported_capabilitiesstring[] | nullrequired
supports_custom_fieldsbooleanrequired
supports_listsbooleanrequired
supports_relationshipsbooleanrequired
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
409Conflict
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/custom-object-types" \
  -H "Content-Type: application/json" \
  -d '{
  "description": "string",
  "icon_key": "string",
  "kind": "string",
  "label": "string",
  "metadata": "string",
  "plural_label": "string",
  "primary_display_field": "string"
}'
Response
{
  "backing_entity": "string",
  "backing_table": "string",
  "domain": "string",
  "explicit": true,
  "generalized": true,
  "icon_key": "string",
  "kind": "string",
  "label": "string",
  "plural_label": "string",
  "primary_display_field": "string",
  "supported_capabilities": [
    "string"
  ],
  "supports_custom_fields": true,
  "supports_lists": true,
  "supports_relationships": true
}