GET
/
users
/
{user_id}
curl --request GET \
  --url https://api.useswift.dev/users/{user_id} \
  --header 'Authorization: Bearer <token>'
{
  "address": {
    "line1": "123 Main St",
    "line2": null,
    "city": "Anytown",
    "state": "CA",
    "zip": "12345"
  },
  "created_at": "2024-01-31T23:59:59Z",
  "date_of_birth": {
    "date": 27,
    "month": 7,
    "year": 1996
  },
  "email": "bob.smith@example.com",
  "phone": "1234567890",
  "first_name": "Bob",
  "id": "user_vjb43lkAdf934jb13Df93",
  "last_name": "Smith",
  "ssn": "123456789",
  "status": "active"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

user_id
string
required

The identifier of the User to retrieve.

Response

200
application/json

User

Users represent end users capable of completing transfers via Swift's API.