Current resolution of messages and tickets received in a bounded period
GET
/v1/caller-request-metrics
const url = 'https://api.vocapable.com/v1/caller-request-metrics';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.vocapable.com/v1/caller-request-metrics \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”start
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
RequestResolutionSummary
Request creation defines the cohort; state reflects current team progress.
Counts are requests, not calls. Two messages on one call count separately. A resolution after the selected period is included in the current state.
object
window
required
DashboardWindow
The exact half-open UTC interval the historical counts cover.
object
start
required
Start
string format: date-time
end
required
End
string format: date-time
as_of
required
As Of
string format: date-time
counts
required
Counts
Array<object>
RequestResolutionCountobject
kind
required
Kind
string
open_count
Open Count
integer
acknowledged_count
Acknowledged Count
integer
resolved_count
Resolved Count
integer
Example
{ "counts": [ { "kind": "message", "open_count": 0, "acknowledged_count": 0, "resolved_count": 0 } ]}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
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": {} } ]}