1. Users
  2. Retrieve limited information about a user given a verification ID
GET

/api/api/users/get_by_verification_id/{verification_id}

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

Response

success
boolean
connected
boolean
user
object