Users
Verify a user with the token sent to them
POST
/
api
/
users
/
verify_user
Authorization
Body
{
"verification_id": "5bcbf7ac-c998-46ce-aa6e-a0c1a3f1f5bd",
"verification_token": "string"
}
{
"success": true,
"user": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
},
"message": "Error message"
}
Authorizations
Authorizationheaderrequired
string
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Body
application/json
verification_idrequired
string
verification_tokenrequired
string
Response
200 - application/json
message
string
The error if there is one
success
boolean
user
object
{
"verification_id": "5bcbf7ac-c998-46ce-aa6e-a0c1a3f1f5bd",
"verification_token": "string"
}
{
"success": true,
"user": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
},
"message": "Error message"
}