GET
/
user
/
{id}
curl --request GET \
  --url https://api.pushcash.com/user/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "user_28CJjV7P4Go5PNJvfzghiD",
  "tag": "4c8e6b4f",
  "status": "enabled",
  "name": {
    "first": "Alfred",
    "last": "Hitchcock"
  },
  "address": {
    "address_line_1": "1609 10th Ave",
    "locality": "Bodega Bay",
    "administrative_area": "CA",
    "postal_code": "94923",
    "country": "US"
  },
  "email": "alfred@imdb.com",
  "phone_number": "(555) 681-3485",
  "date_of_birth": "1899-08-13",
  "government_id": {
    "type": "passport",
    "last4": "7349"
  },
  "payment_credentials": [
    {
      "bank_name": "Space Coast Credit Union",
      "account": {
        "number_mask": "5978",
        "routing": "263177903"
      },
      "card": {
        "primary_account_number_mask": "6018",
        "expiration": "2024-05-01"
      }
    }
  ],
  "limits": {
    "daily_limit": 1800000,
    "currency": "USD"
  },
  "created_at": "2023-04-10T05:10:14.532Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The push identifier for the user

Example:

"user_28CJjV7P4Go5PNJvfzghiD"

Response

200
application/json
successful operation
id
string
required

Push's identifier assigned to the user

tag
string | null
required

The tag provided in the request to create the user

status
enum<string>
required
Available options:
created,
enabled,
suspended,
disabled
name
object
required

The legal name of the user

Example:
{ "first": "Alfred", "last": "Hitchcock" }
address
object
required

The address of the user's primary location

Example:
{
  "address_line_1": "1609 10th Ave",
  "locality": "Bodega Bay",
  "administrative_area": "CA",
  "postal_code": "94923",
  "country": "US"
}
email
string
required

The email address for the user

Example:

"john@email.com"

phone_number
string | null
required

The phone number for the user

Example:

"15559283950"

date_of_birth
string
required

The user's date of birth

government_id
object
required
Example:
{
  "type": "drivers_license",
  "last4": "Y7B9",
  "state": "OR"
}
payment_credentials
array | null
required

The payment credentials associated with the user

The details for the user's payment credential

limits
object
required

The transaction limits for the user

created_at
string
required

Date and time in which user was first created in system