curl --request POST \
--url https://api.dots.dev/api/v2/users/{user_id}/verify \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"token": "<string>"
}'
Verify a user with a token.
curl --request POST \
--url https://api.dots.dev/api/v2/users/{user_id}/verify \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"token": "<string>"
}'
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Id of the user to fetch
OK
Was this page helpful?