Test different HTTP methods and content types for form submission
Forms can submit via different HTTP methods (POST, GET, PUT, PATCH) and content types (JSON, form-urlencoded, FormData, GraphQL). The SDK's network interception must parse all these formats to extract identity.
Standard JSON POST request. Most common modern API format.
Traditional form encoding. Used by native HTML forms.
Multipart form data. Used for file uploads.
Form with method="GET". Email in URL query string.
Update user endpoint. Full resource replacement.
Partial update. Only email field in body.
GraphQL mutation with email in nested variables object.