Transcript Analysis (v2)¶
URL¶
The API follows REST conventions. Perform an HTTPS GET to the URL in order to retrieve Transcript Analysis.
Unlike v1, the v2 endpoint always returns an explicit, per-analysis status for both the transcript summary and sentiment, so clients never have to interpret a missing field. Each analysis has its own independent lifecycle (sentiment can be available while the summary is still pending, and vice versa).
The following response formats are supported, where CUID-33 is the call record id.
Format |
Description and URL |
|---|---|
json (default) |
Returns a JSON object of the transcript analysis. https://mynetwork.invoca.net/call/v2/transcript_analysis/CUID-33 |
Authentication¶
The API uses OAuth to validate access. The OAuth Token can be passed in two ways. The first way is to pass the OAuth Token in the header of the request. The second is to pass the OAuth Token like any other query parameter. Please note that the OAuth Token is a required parameter. OAuth Tokens may be generated from the Manage API Credentials page.
Status values¶
transcript_summary.status:
Status |
Meaning |
|---|---|
|
The summary has been generated; |
|
The summary is enabled and is being (or will be) generated; |
|
The transcript was too short to summarize; no summary will be produced. |
|
The call has no transcript; no summary will be produced. |
|
Transcript summaries are not enabled for this network. |
sentiment.status:
Status |
Meaning |
|---|---|
|
Sentiment has been computed; |
|
Sentiment is enabled and is being (or will be) computed; scores are absent. |
|
Sentiment analysis is not enabled for this network. |
Response¶
Examples
Get transcript analysis for the given call record CUID-33 where both the summary and sentiment are available
Endpoint:
https://mynetwork.invoca.net/call/v2/transcript_analysis/CUID-33
Format: application/json
Response Code: 200
Response Body:
{
"call_record_id": "CUID-33",
"transcript_summary": {
"status": "available",
"text": "The customer was looking to purchase a new vehicle."
},
"sentiment": {
"status": "available",
"overall": { "score": 0.42, "label": "positive" },
"agent": { "score": 0.55, "label": "positive" },
"caller": { "score": 0.31, "label": "neutral" }
}
}
Examples
Get transcript analysis for the given call record CUID-33 where the summary is still pending and sentiment analysis is not enabled
Endpoint:
https://mynetwork.invoca.net/call/v2/transcript_analysis/CUID-33
Format: application/json
Response Code: 200
Response Body:
{
"call_record_id": "CUID-33",
"transcript_summary": {
"status": "pending"
},
"sentiment": {
"status": "not_applicable"
}
}
Endpoint:
https://mynetwork.invoca.net/call/v2/transcript_analysis/<call_record_id>