User Routes
Verify User
POST
/
v2
/
users
/
{user_id}
/
verify
Authorization
Path
Body
curl --request POST \
--url https://api.dots.dev/api/v2/users/{user_id}/verify \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"token": "<string>"
}'
Authorizations
Authorization
string
headerrequiredBasic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Path Parameters
user_id
string
requiredId of the user to fetch
Body
application/json
token
string
requiredThe token sent to the user.
curl --request POST \
--url https://api.dots.dev/api/v2/users/{user_id}/verify \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"token": "<string>"
}'