curl --request POST \
--url https://apigcp.trynia.ai/v2/auth/login \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"organization_id": "<string>"
}
'{
"message": "verification code sent"
}Request a verification code for passwordless login.
A 6-digit code is sent to the provided email. Exchange it via POST /v2/auth/login/verify to receive a new API key.
curl --request POST \
--url https://apigcp.trynia.ai/v2/auth/login \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"organization_id": "<string>"
}
'{
"message": "verification code sent"
}Was this page helpful?