curl --request POST \
--url https://api.example.com/auth/verify \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>"
}
'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "jsmith@example.com",
"role": "basic",
"settings": {},
"is_active": true,
"is_superuser": false,
"is_verified": false,
"first_name": "<string>",
"last_name": "<string>"
}curl --request POST \
--url https://api.example.com/auth/verify \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>"
}
'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "jsmith@example.com",
"role": "basic",
"settings": {},
"is_active": true,
"is_superuser": false,
"is_verified": false,
"first_name": "<string>",
"last_name": "<string>"
}Successful Response
Was this page helpful?