Update a Feedback resource for a call
The call Feedback subresource describes the quality experienced during a phone call.
Update a Feedback resource for a call
Path parameters
-
The unique id of the Account responsible for this resource.
-
The call sid that uniquely identifies the call
Body
-
Issue array[string]
One or more issues experienced during the call. The issues can be:
imperfect-audio
,dropped-call
,incorrect-caller-id
,post-dial-delay
,digits-not-captured
,audio-latency
,unsolicited-call
, orone-way-audio
.Values are
audio-latency
,digits-not-captured
,dropped-call
,imperfect-audio
,incorrect-caller-id
,one-way-audio
,post-dial-delay
, orunsolicited-call
. -
QualityScore integer
The call quality expressed as an integer from
1
to5
where1
represents very poor call quality and5
represents a perfect call.
POST /2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Feedback.json
curl \
-X POST https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Feedback.json \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'Issue=audio-latency&QualityScore=42'
Request example
{
"Issue": [
"audio-latency"
],
"QualityScore": 42
}
Request examples
{
"Issue": [
"audio-latency"
],
"QualityScore": 42
}
Response examples (200)
{
"account_sid": "string",
"date_created": "string",
"date_updated": "string",
"issues": [
"audio-latency"
],
"quality_score": 42,
"sid": "string"
}
Response examples (200)
{
"account_sid": "string",
"date_created": "string",
"date_updated": "string",
"issues": [
"audio-latency"
],
"quality_score": 42,
"sid": "string"
}