21664: 'FallbackFrom' cannot be used with a 'From' sender
MESSAGING
ERROR
You can't use FallbackFrom when From is set to a specific phone number or RCS Sender. To use FallbackFrom, send the message with MessagingServiceSid so Twilio can select the RCS Sender from the Messaging Service's Sender Pool.
- You sent both
FallbackFromandFromin the same request, andFromcontains anE.164phone number such as+15105550100. - You sent both
FallbackFromandFromin the same request, andFromcontains an RCS Sender such asrcs:sender_id. - You used
FallbackFromwithout routing the message through a Messaging Service.FallbackFromonly works withMessagingServiceSid.
- If you want native RCS fallback, remove
Fromand send the message withMessagingServiceSidplusFallbackFrom. - If you want to send without RCS fallback, remove
FallbackFromand useFromonly. For direct RCS sending without fallback, setFromto the RCS Sender ID and setToto the recipient'srcs:address. - If you need a specific fallback sender, provide it in
FallbackFromand make sure it belongs to the same Account SID. The fallback sender must be a Twilio phone number inE.164format, an alphanumeric sender ID, or a short code. - If you are passing a Messaging Service SID in
From, move that value toMessagingServiceSid. This is the recommended way to combine Messaging Service sender selection withFallbackFrom.