userid
Last updated
This endpoint retrieves a user's ID based on their email address.
Content-Type
application/json
The content type of the request body.
X-Auth-Token
string
The authentication token of the requesting user.
X-User-Id
string
The ID of the requesting user.
{
"email": "user@example.com"
}string
The email address of the user to look up.
{
"body": {
"status": "success",
"message": "User ID",
"userID": "abcdef123456"
}
}Last updated
{
"body": {
"status": "failure",
"message": "Invalid API call invalid params"
}
}