Skip to main content
GET
/
api
/
v1
/
accounts
/
{account_id}
/
follow_up_tasks
List follow-up tasks
curl --request GET \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/follow_up_tasks \
  --header 'api_access_token: <api-key>'
{
  "data": [
    {
      "id": 20,
      "title": "Follow up with prospect",
      "description": "Call back after proposal review.",
      "status": "pending",
      "priority": "medium",
      "due_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "taskable_type": "Lead",
      "taskable_id": 42,
      "assigned_to": {
        "id": 1,
        "name": "Jane Smith",
        "email": "jane@example.com",
        "avatar_url": "<string>"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "current_page": 123,
    "total_pages": 123,
    "total_count": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.voxys.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api_access_token
string
header
required

API access token for authentication. Obtain from your Voxys Connect profile settings.

Path Parameters

account_id
integer
required

The numeric ID of the account.

Query Parameters

taskable_type
enum<string>

Filter tasks by the type of attached entity.

Available options:
Lead,
FunnelCard,
Conversation,
Contact
taskable_id
integer

Filter tasks by the ID of the attached entity. Requires taskable_type.

status
enum<string>

Filter by task status.

Available options:
pending,
completed,
snoozed
due_before
string<date-time>

Return tasks due before this timestamp.

due_after
string<date-time>

Return tasks due after this timestamp.

page
integer
default:1

Page number for pagination.

per_page
integer
default:25

Number of records per page.

Required range: x <= 100

Response

Paginated list of tasks.

data
object[]
meta
object