1. Users
  2. Get the user by their id
GET

/api/api/users/get/{user_id}

client_id*
api_key*
curl --request GET \
     --url https://api.senddotssandbox.com/api/api/users/get/{user_id} \
     --header 'Authorization: Basic AUTH_VALUE'
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "email": "user@example.com",
  "username": "john-doe",
  "first_name": "John",
  "last_name": "Doe",
  "display_name": "John Doe",
  "ach_accounts": [
    {
      "id": "acc_2345683453",
      "name": "Chase",
      "mask": "2341"
    }
  ],
  "payout_methods": {
    "ach_accounts": [
      {
        "id": "acc_2345683453",
        "name": "Chase",
        "mask": "2341"
      }
    ],
    "paypal": "string",
    "venmo": "string"
  },
  "wallet": {
    "amount": 1000,
    "withdrawable_amount": 900,
    "credit_balance": 250
  }
}

Parameters

user_idRequired
string

ID of user to return

Response

id
string
email
string
username
string
first_name
string
last_name
string
display_name
string
ach_accounts
array
payout_methods
object
wallet
object