GET
/
users
/
get
curl --request GET \
  --url https://api.joinswift.app/users/get \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '"<string>"'
{
  "email": "<string>",
  "phone": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "date_of_birth": {
    "day": 123,
    "month": 123,
    "year": 123
  },
  "ssn": "<string>"
}

Authorizations

Authorization
string
headerrequired

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

Body

application/json ยท string

ID from /user/create of user to fetch

Response

200 - application/json
email
string
required

Email of user

phone
string
required

10-digit US phone number of user

first_name
string
required

Legal first name of user

last_name
string
required

Legal last name of user

date_of_birth
object
required

Date of birth of user

ssn
string

US Social Security Number of user