Create a User
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
Parameters for creating a User.
The address of the User.
{
"line1": "123 Main St",
"line2": null,
"city": "Anytown",
"state": "CA",
"zip": "12345"
}
The email address of the User.
The first name of the User.
The last name of the User.
The Social Security Number of the User. This field is not required for certain accounts.
The date of birth of the User.
{ "date": 27, "month": 7, "year": 1996 }
The verified phone number associated with the User.
Response
Users represent end users capable of completing transfers via Swift's API.
The address of the User.
{
"line1": "123 Main St",
"line2": null,
"city": "Anytown",
"state": "CA",
"zip": "12345"
}
The verified email associated with the User.
The first name of the User.
The User's unique identifier.
The last name of the User.
The verified phone number associated with the User.
The Social Security Number of the User. This field is not required for certain accounts.
The current status of the User.
active
, archived
The date of birth of the User.
{ "date": 27, "month": 7, "year": 1996 }