Create Message Feedback to confirm a tracked user action was performed by the recipient of the associated Message
POST
/2010-04-01/Accounts/{AccountSid}/Messages/{MessageSid}/Feedback.json https://api.twilio.com
Create Message Feedback to confirm a tracked user action was performed by the recipient of the associated Message
Parameters
path Path Parameters
| Name | Type |
|---|---|
AccountSid
required
The SID of the Account associated with the Message resource for which to create MessageFeedback. | `AC${string}` |
MessageSid
required
The SID of the Message resource for which to create MessageFeedback. | string |
Request Body
application/x-www-form-urlencoded
{ Outcome?: MessageFeedbackEnumOutcome ; }
Responses
200 application/json
OK
interface ApiV2010AccountMessageMessageFeedback {
account_sid?: `AC${string}` | null;
message_sid?: string | null;
outcome?:MessageFeedbackEnumOutcome ;
date_created?: string | null;
date_updated?: string | null;
uri?: string | null;
}
account_sid?: `AC${string}` | null;
message_sid?: string | null;
outcome?:
date_created?: string | null;
date_updated?: string | null;
uri?: string | null;
}