Search + K

Command Palette

Search for a command to run...

Sign In

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
Copy endpoint
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

Reported outcome indicating whether there is confirmation that the Message recipient performed a tracked user action. Can be: unconfirmed or confirmed. For more details see How to Optimize Message Deliverability with Message Feedback.

type MessageFeedbackEnumOutcome = "confirmed" | "unconfirmed"
; }

Responses

200 application/json

OK

interface ApiV2010AccountMessageMessageFeedback {
account_sid?: `AC${string}` | null;
message_sid?: string | null;
outcome?: MessageFeedbackEnumOutcome

Reported outcome indicating whether there is confirmation that the Message recipient performed a tracked user action. Can be: unconfirmed or confirmed. For more details see How to Optimize Message Deliverability with Message Feedback.

type MessageFeedbackEnumOutcome = "confirmed" | "unconfirmed"
;
date_created?: string | null;
date_updated?: string | null;
uri?: string | null;
}