cURL
curl --request POST \ --url https://apx.didit.me/auth/v2/programmatic/verify-email/ \ --header 'Content-Type: application/json' \ --data ' { "email": "jsmith@example.com", "code": "<string>" } '
200
Success
{ "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...", "refresh_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...", "expires_in": 86400, "organization": { "uuid": "a1b2c3d4-5678-90ab-cdef-111111111111", "name": "developer" }, "application": { "uuid": "b2c3d4e5-6789-01bc-defg-222222222222", "name": "developer", "client_id": "S9LIYGSoWNuGMLHsvEt9dQ", "api_key": "05mHcOWL8GathLZlz8oIDawYj9qFAcoSHtz-75PAkuo" } }
Verify email with OTP code and receive access tokens plus application credentials (client_id + api_key) in a single response.
6-character alphanumeric code from email (e.g., A3K9F2)
6
Email verified. Returns tokens and application credentials.
Show child attributes