80403: Interaction Sid Invalid
PROXY
WARNING
This warning appears when you send a Proxy request with an invalid Interaction SID. In Proxy, Interactions are read-only communication logs within a Session, and each Interaction SID must be a Twilio-generated value that matches the KI SID pattern.
- The
Sidvalue in your request is not a valid Interaction SID format. Proxy Interaction SIDs must match theKIpattern and be 34 characters long. - You used a different Proxy SID type in place of an Interaction SID, such as a Service SID with the
KSprefix, a Session SID with theKCprefix, or a Participant SID with theKPprefix. - The Interaction SID was copied incorrectly, truncated, or includes extra characters, which makes it fail Proxy SID validation.
- You are trying to fetch or delete an Interaction without using the correct Proxy resource path for
ServiceSid,SessionSid, andSid.
- Use the Interaction
sidreturned by Proxy instead of constructing the value yourself. Twilio creates the unique SID for each Interaction resource. - Validate that the Interaction SID starts with
KIand matches the expected 34-character format before sending the request. - For fetch or delete requests, send the Interaction SID in the
/Services/{ServiceSid}/Sessions/{SessionSid}/Interactions/{Sid}path and confirm that the parentServiceSidandSessionSidare valid Proxy SIDs for the same resource hierarchy. - If you are not sure which Interaction SID to use, list the Session's Interactions first and then retry the request with the returned
sidvalue.