The Suada API is organized around REST, like a divine order governing the digital cosmos. Our API accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs - the sacred language through which mortals may commune with our services.
When using passthrough mode, you must include an external user identifier with each request. This allows you to associate Suada resources with your application’s users.
Copy
X-External-User-Id: your-user-id
Or as part of the request body:
Copy
{ "externalUserIdentifier": "your-user-id", // other request parameters}
Ensure that external user identifiers are consistent across requests for the same user to maintain proper resource association.