Skip to main content
GET
/
contacts
/
{contactId}
/
tasks
Get all Tasks
curl --request GET \
  --url https://services.leadconnectorhq.com/contacts/{contactId}/tasks \
  --header 'Authorization: Bearer <token>' \
  --header 'Version: <version>'
{
  "tasks": [
    {
      "id": "lJpzYrWdpkC2hX6t2yue",
      "title": "test",
      "body": "testing",
      "assignedTo": "tesTUcmRxWrjqzJS8EjkxNKting",
      "dueDate": "2021-07-08T02:30:00.000Z",
      "completed": true,
      "contactId": "lJpzYrWdpkC2hX6t2yue"
    }
  ]
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Headers

Version
enum<string>
required

API Version

Available options:
2021-07-28

Path Parameters

contactId
string
required

Contact Id

Example:

"sx6wyHhbFdRXh302LLNR"

Response

Successful response

tasks
object[]
Last modified on March 4, 2026