Authorizations
The API token generated from the Obselite dashboard
curl --request POST \
--url https://api.obselite.com/v0/auth/verify \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"token": "<string>"
}'{
"isAuthenticated": true,
"redirect": "<string>"
}Authenticate a user uuid and token
curl --request POST \
--url https://api.obselite.com/v0/auth/verify \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"token": "<string>"
}'{
"isAuthenticated": true,
"redirect": "<string>"
}The API token generated from the Obselite dashboard