Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

List CRM tasks

GET/v1/crm/object-types/{objectKind}/records/{objectID}/tasks
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Path parameters
objectKindstringrequired
objectIDstringrequired
Responses
200OK
itemsCRMTask[] | nullrequired
Show properties
Array of CRMTask
assignee_idstring
completed_atstring
created_atstringrequired
created_bystring
descriptionstringrequired
description_richCRMRichText
Show properties
jsonanyrequired
plain_textstringrequired
typestringrequired
due_atstring
idstringrequired
object_idstring
object_kindstring
statusstringrequired
targetsCRMActivityTarget[] | nullrequired
Show properties
Array of CRMActivityTarget
created_atstringrequired
created_bystring
idstringrequired
object_idstringrequired
object_kindstringrequired
updated_atstringrequired
titlestringrequired
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
404Not Found
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 GET "/v1/crm/object-types/string/records/string/tasks"
Response
{
  "items": [
    {
      "assignee_id": "string",
      "completed_at": "string",
      "created_at": "string",
      "created_by": "string",
      "description": "string",
      "description_rich": {
        "json": "string",
        "plain_text": "string",
        "type": "string"
      },
      "due_at": "string",
      "id": "string",
      "object_id": "string",
      "object_kind": "string",
      "status": "string",
      "targets": [
        {
          "created_at": "string",
          "created_by": "string",
          "id": "string",
          "object_id": "string",
          "object_kind": "string",
          "updated_at": "string"
        }
      ],
      "title": "string",
      "updated_at": "string"
    }
  ]
}