Skip to content

Page receptionist activity with a stable cursor

GET
/v1/mobile/receptionist/activity/page
curl --request GET \
--url 'https://api.vocapable.com/v1/mobile/receptionist/activity/page?limit=50' \
--header 'Authorization: Bearer <token>'

Page the merged activity timeline without offset drift under live call updates.

limit
Limit
integer
default: 50 >= 1 <= 100
cursor
Any of:
string

Successful Response

Media typeapplication/json
CursorPage[MobileReceptionistActivity]
object
data
required
Data
Array<object>
MobileReceptionistActivity

One privacy-minimized receptionist event for the mobile activity timeline.

resource_id is the source resource (for example a handoff request or voicemail receipt). A client that needs a transcript, voicemail/appointment detail, or recording follows the native authenticated activity-detail endpoint; this projection deliberately does not become an alternate media-delivery surface.

object
resource_id
required
Resource Id
string
kind
required
Kind
string
Allowed values: live_call call voicemail appointment handoff
status
required
Status
string
occurred_at
required
Occurred At
string format: date-time
call_id
Any of:
string
phone_number_id
Any of:
string
agent_version_id
Any of:
string
next_cursor
Any of:
string
has_more
Has More
boolean
Example
{
"data": [
{
"kind": "live_call"
}
],
"has_more": false
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}