action twilio_fetch_call_feedback_summary { label: "FetchCallFeedbackSummary" description: "Fetch a FeedbackSummary resource from a call" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Calls/FeedbackSummary/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "Sid"] additionalProperties: false } output: { type: "object" properties: { account_sid: { type: "string" description: "The unique id of the [Account](https://www.twilio.com/docs/iam/api/account) responsible for this resource." } call_count: { type: "integer" description: "The total number of calls." } call_feedback_count: { type: "integer" description: "The total number of calls with a feedback entry." } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date that this resource was created, given in [RFC 2822](https://www.php.net/manual/en/class.datetime.php#datetime.constants.rfc2822) format." } date_updated: { type: "string" format: "date-time-rfc-2822" description: "The date that this resource was last updated, given in [RFC 2822](https://www.php.net/manual/en/class.datetime.php#datetime.constants.rfc2822) format." } end_date: { type: "string" format: "date" description: "The last date for which feedback entries are included in this Feedback Summary, formatted as `YYYY-MM-DD` and specified in UTC." } include_subaccounts: { type: "boolean" description: "Whether the feedback summary includes subaccounts; `true` if it does, otherwise `false`." } issues: { type: "array" description: "A list of issues experienced during the call. The issues can be: `imperfect-audio`, `dropped-call`, `incorrect-caller-id`, `post-dial-delay`, `digits-not-captured`, `audio-latency`, or `one-way-audio`." items: { type: "object" } } quality_score_average: { type: "number" description: "The average QualityScore of the feedback entries." } quality_score_median: { type: "number" description: "The median QualityScore of the feedback entries." } quality_score_standard_deviation: { type: "number" description: "The standard deviation of the quality scores." } sid: { type: "string" description: "A 34 character string that uniquely identifies this resource." } start_date: { type: "string" format: "date" description: "The first date for which feedback entries are included in this feedback summary, formatted as `YYYY-MM-DD` and specified in UTC." } status: { type: "string" enum: ["queued", "in-progress", "completed", "failed"] } } } }