curl --request GET \
  --url https://api.senddotssandbox.com/api/users/get_by_verification_id/{verification_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "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

Authorization
string
headerrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json
success
boolean
connected
boolean
user
object