Fetch a Feedback resource from a call

GET /2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Feedback.json

The call Feedback subresource describes the quality experienced during a phone call.

Fetch a Feedback resource from a call

Path parameters

  • AccountSid string Required

    The unique id of the Account responsible for this resource.

  • CallSid string Required

    The call sid that uniquely identifies the call

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • account_sid string | null

      The unique sid that identifies this account

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

    • date_created string(date-time-rfc-2822) | null

      The date this resource was created

    • date_updated string(date-time-rfc-2822) | null

      The date this resource was last updated

    • issues array[string] | null

      Issues experienced during the call

      Values are audio-latency, digits-not-captured, dropped-call, imperfect-audio, incorrect-caller-id, one-way-audio, post-dial-delay, or unsolicited-call.

    • quality_score integer | null

      1 to 5 quality score

    • sid string | null

      A string that uniquely identifies this feedback resource

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^CA[0-9a-fA-F]{32}$.

GET /2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Feedback.json
curl \
 -X GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Feedback.json \
 --user "username:password"
Response examples (200)
{
  "account_sid": "string",
  "date_created": "string",
  "date_updated": "string",
  "issues": [
    "audio-latency"
  ],
  "quality_score": 42,
  "sid": "string"
}