curl --request GET \
--url https://api.clarionhealth.com/v1/sequence-manager/sequences/metrics \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"status": "in-progress",
"created_at": "2023-11-07T05:31:56Z",
"last_updated": "2023-11-07T05:31:56Z",
"outreach": [
{
"type": "call",
"step": 123,
"call_record_id": 123,
"messaging_encounter_id": 123,
"analysis": {}
}
]
}
]
}Get metrics for all sequences for the current organization
curl --request GET \
--url https://api.clarionhealth.com/v1/sequence-manager/sequences/metrics \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"status": "in-progress",
"created_at": "2023-11-07T05:31:56Z",
"last_updated": "2023-11-07T05:31:56Z",
"outreach": [
{
"type": "call",
"step": 123,
"call_record_id": 123,
"messaging_encounter_id": 123,
"analysis": {}
}
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Array of sequence metrics
Array of sequence metrics
Show child attributes
Unique identifier for the sequence
Current status of the sequence
in-progress, completed, failed, cancelled, queued, paused When the sequence was created
When the sequence was last updated
Array of outreach information for the sequence
Show child attributes
Type of outreach
call, messaging_encounter The step number in the sequence
ID of the associated call record (if type is call)
ID of the associated messaging encounter (if type is messaging_encounter)
Analysis data for the outreach