curl --request POST \
--url https://{defaultHost}/v1/auth/{app_id}/tokens/verify/refresh \
--header 'Authorization: Bearer <token>' \
--header 'X-Authorization: <api-key>'{
"message": "verified",
"verified": true
}Verify that a refresh token is valid and not expired. Requires a valid refresh token in the Authorization header.
curl --request POST \
--url https://{defaultHost}/v1/auth/{app_id}/tokens/verify/refresh \
--header 'Authorization: Bearer <token>' \
--header 'X-Authorization: <api-key>'{
"message": "verified",
"verified": true
}Was this page helpful?