Skip to main content
GET
/
api
/
v1
/
accounts
/
{account_id}
/
funnels
/
{id}
/
cards
/
{card_id}
/
history
Get card history
curl --request GET \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/funnels/{id}/cards/{card_id}/history \
  --header 'api_access_token: <api-key>'
[
  {
    "id": 1,
    "event_type": "stage_changed",
    "description": "Card moved from Qualification to Proposal.",
    "from_stage": "Qualification",
    "to_stage": "Proposal",
    "actor": {
      "id": 1,
      "name": "Jane Smith",
      "email": "jane@example.com",
      "avatar_url": "<string>"
    },
    "occurred_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 pipeline.

card_id
integer
required

The ID of the card.

Response

Card history events.

id
integer
Example:

1

event_type
string
Example:

"stage_changed"

description
string
Example:

"Card moved from Qualification to Proposal."

from_stage
string | null
Example:

"Qualification"

to_stage
string | null
Example:

"Proposal"

actor
object
occurred_at
string<date-time>