List CRM custom object types
GET
/v1/crm/custom-object-typesAuthorization
bearerAuthbearerAuthrequiredor
apiKeyAuthapiKeyAuthrequiredResponses
200OK
itemsCrmObjectTypeItem[] | nullrequiredShow propertiesHide properties
Array of
CrmObjectTypeItembacking_entitystringrequiredbacking_tablestringrequireddomainstringrequiredexplicitbooleanrequiredgeneralizedbooleanrequiredicon_keystringrequiredkindstringrequiredlabelstringrequiredplural_labelstringrequiredprimary_display_fieldstringrequiredsupported_capabilitiesstring[] | nullrequiredsupports_custom_fieldsbooleanrequiredsupports_listsbooleanrequiredsupports_relationshipsbooleanrequired401Unauthorized
errorErrorBodyrequiredShow propertiesHide properties
codestringrequireddetailsErrorDetail[] | nullShow propertiesHide properties
Array of
ErrorDetailcodestringfieldstringlocationstringmessagestringrequiredmessagestringrequiredrequest_idstring403Forbidden
errorErrorBodyrequiredShow propertiesHide properties
codestringrequireddetailsErrorDetail[] | nullShow propertiesHide properties
Array of
ErrorDetailcodestringfieldstringlocationstringmessagestringrequiredmessagestringrequiredrequest_idstring500Internal Server Error
errorErrorBodyrequiredShow propertiesHide properties
codestringrequireddetailsErrorDetail[] | nullShow propertiesHide properties
Array of
ErrorDetailcodestringfieldstringlocationstringmessagestringrequiredmessagestringrequiredrequest_idstringRequest
curl -X GET "/v1/crm/custom-object-types"const response = await fetch("/v1/crm/custom-object-types", {
method: "GET"
});import requests
response = requests.get(
"/v1/crm/custom-object-types",
)Response
{
"items": [
{
"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
}
]
}{
"error": {
"code": "string",
"details": [
{
"code": "string",
"field": "string",
"location": "string",
"message": "string"
}
],
"message": "string",
"request_id": "string"
}
}{
"error": {
"code": "string",
"details": [
{
"code": "string",
"field": "string",
"location": "string",
"message": "string"
}
],
"message": "string",
"request_id": "string"
}
}{
"error": {
"code": "string",
"details": [
{
"code": "string",
"field": "string",
"location": "string",
"message": "string"
}
],
"message": "string",
"request_id": "string"
}
}