Authenticate a Member provided TOTP.
Authenticate TOTP
POSThttps://test.stytch.com/v1/b2b/totp/authenticate
Body parameters
organization_id* string
member_id* string
code* string
intermediate_session_token string
set_mfa_enrollment string
set_default_mfa boolean
session_token string
session_jwt string
session_duration_minutes int
session_custom_claims map<string, any>
Response fields
request_id string
status_code int
member_id string
organization_id string
member object
organization object
session_token string
session_jwt string
member_session object
curl --request POST \
--url https://test.stytch.com/v1/b2b/totp/authenticate \
-u 'PROJECT_ID:SECRET' \
-H 'Content-Type: application/json' \
-d '{
"organization_id": "organization-test-07971b06-ac8b-4cdb-9c15-63b17e653931",
"member_id": "member-test-32fc5024-9c09-4da3-bd2e-c9ce4da9375f",
"code": "123456",
"intermediate_session_token": "SeiGwdj5lKkrEVgcEY3QNJXt6srxS3IK2Nwkar6mXD4="
}'
RESPONSE
200
{
"status_code": 200,
"request_id": "request-id-test-b05c992f-ebdc-489d-a754-c7e70ba13141",
"member_id": "member-test-32fc5024-9c09-4da3-bd2e-c9ce4da9375f",
"organization_id": "organization-test-07971b06-ac8b-4cdb-9c15-63b17e653931",
"session_jwt": "example_jwt",
"session_token": "mZAYn5aLEqKUlZ_Ad9U_fWr38GaAQ1oFAhT8ds245v7Q",
"member_session": {...},
"member": {...},
"organization": {...}
}