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>" } '
{ "access_token": "<string>", "refresh_token": "<string>", "expires_in": 123, "organization": { "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>" }, "application": { "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>", "client_id": "<string>", "api_key": "<string>" } }
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