action twilio_fetch_call_feedback { label: "FetchCallFeedback" description: "Fetch a Feedback resource from a call" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Feedback.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } CallSid: { type: "string" } } required: ["AccountSid", "CallSid"] 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." } 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." } 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`, `unsolicited-call`, or `one-way-audio`." items: { type: "string" enum: ["audio-latency", "digits-not-captured", "dropped-call", "imperfect-audio", "incorrect-caller-id", "one-way-audio", "post-dial-delay", "unsolicited-call"] } } quality_score: { type: "integer" description: "`1` to `5` quality score where `1` represents imperfect experience and `5` represents a perfect call." } sid: { type: "string" description: "A 34 character string that uniquely identifies this resource." } } } }