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

Authorizations

Authorization
string
headerrequired

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

Body

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

Response

200 - application/json

Created User ID