Skip to main content
PATCH
/
api
/
v1
/
accounts
/
{account_id}
/
follow_up_tasks
/
{id}
Update a follow-up task
curl --request PATCH \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/follow_up_tasks/{id} \
  --header 'Content-Type: application/json' \
  --header 'api_access_token: <api-key>' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "due_at": "2023-11-07T05:31:56Z",
  "assigned_to_id": 123
}
'
{
  "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"
}

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.

id
integer
required

The ID of the follow-up task.

Body

application/json
title
string
description
string | null
due_at
string<date-time> | null
priority
enum<string>
Available options:
low,
medium,
high
assigned_to_id
integer | null

Response

Task updated.

id
integer
Example:

20

title
string
Example:

"Follow up with prospect"

description
string | null
Example:

"Call back after proposal review."

status
enum<string>
Available options:
pending,
completed,
snoozed
Example:

"pending"

priority
enum<string>
Available options:
low,
medium,
high
Example:

"medium"

due_at
string<date-time> | null
completed_at
string<date-time> | null
taskable_type
string
Example:

"Lead"

taskable_id
integer
Example:

42

assigned_to
object
created_at
string<date-time>
updated_at
string<date-time>