Users
Retrieve limited information about a user given a verification ID
GET
/
api
/
users
/
get_by_verification_id
/
{verification_id}
Authorization
curl --request GET \
--url https://api.senddotssandbox.com/api/api/users/get_by_verification_id/{verification_id} \
--header 'Authorization: <authorization>'
{
"success": true,
"connected": true,
"user": {
"id": "string",
"first_name": "string",
"last_name": "string",
"username": "string",
"email": "user@example.com",
"wallet": {
"amount": 0,
"withdrawable_amount": 0
}
}
}
Authorizations
Authorizationheaderrequired
string
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200 - application/json
connected
boolean
success
boolean
user
object
curl --request GET \
--url https://api.senddotssandbox.com/api/api/users/get_by_verification_id/{verification_id} \
--header 'Authorization: <authorization>'
{
"success": true,
"connected": true,
"user": {
"id": "string",
"first_name": "string",
"last_name": "string",
"username": "string",
"email": "user@example.com",
"wallet": {
"amount": 0,
"withdrawable_amount": 0
}
}
}