Fetch a FeedbackSummary resource from a call

GET /2010-04-01/Accounts/{AccountSid}/Calls/FeedbackSummary/{Sid}.json

Call FeedbackSummary resources provide an idea of how your end user's perceive the quality of their calls and the most common issues they have encountered in the context of all your voice traffic during a specific time frame.

Fetch a FeedbackSummary resource from a call

Path parameters

  • AccountSid string Required

    The unique id of the Account responsible for this resource.

  • Sid string Required

    A 34 character string that uniquely identifies this resource.

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}$.

    • call_count integer | null

      The total number of calls

    • call_feedback_count integer | null

      The total number of calls with a feedback entry

    • 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

    • end_date string(date) | null

      The latest feedback entry date in the summary

    • include_subaccounts boolean | null

      Whether the feedback summary includes subaccounts

    • issues array | null

      Issues experienced during the call

    • The average QualityScore of the feedback entries

    • The median QualityScore of the feedback entries

    • The standard deviation of the quality scores

    • sid string | null

      A string that uniquely identifies this feedback entry

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

    • start_date string(date) | null

      The earliest feedback entry date in the summary

    • status string | null

      The status of the feedback summary

      Values are queued, in-progress, completed, or failed.

GET /2010-04-01/Accounts/{AccountSid}/Calls/FeedbackSummary/{Sid}.json
curl \
 -X GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Calls/FeedbackSummary/{Sid}.json \
 --user "username:password"
Response examples (200)
{
  "account_sid": "string",
  "call_count": 42,
  "call_feedback_count": 42,
  "date_created": "string",
  "date_updated": "string",
  "end_date": "2023-05-04",
  "include_subaccounts": true,
  "issues": [],
  "quality_score_average": 42.0,
  "quality_score_median": 42.0,
  "quality_score_standard_deviation": 42.0,
  "sid": "string",
  "start_date": "2023-05-04",
  "status": "queued"
}