v1
latestOpenAPI 3.0.02026-07-24126202516.7 KBUsers
Create User
Create a User that can be associated with Items as either a buyer or a seller. Users can't be both the buyer and seller for the same Item. You can also use this endpoint to create a company for the user. To create a company for the user, you need to send company parameters in the same request. Note: Some parameters are required for user verification. See our guide on Onboarding a Payout User/Seller for more information.
post/users
Request body
Example request
{
"id": "buyer-1556506027",
"first_name": "Neol1556506027",
"last_name": "Calangi",
"email": "neol.calangi+buyer1556506027@promisepay.com",
"mobile": "+21556506027",
"country": "AUS",
"authorized_signer_title": "Director",
"company": {
"name": "ABC",
"legal_name": "ABC Pty Ltd",
"tax_number": "123456789",
"business_email": "test@sample.com",
"address_line1": "Collins",
"city": "Melbourne",
"state": "VIC",
"zip": "3000",
"country": "AUS"
}
}Response
OK
Example response
{
"users": {
"full_name": "Samuel Seller",
"email": "samuel.seller@assemblypayments.com",
"first_name": "Samuel",
"last_name": "Seller",
"id": "Seller_1234",
"location": "AUS",
"verification_status": "pending",
"roles": [
"customer"
],
"dob": "encrypted",
"government_number": "encrypted",
"related": {
"addresses": "fe602dcf-4175-4f88-b5be-3beb04092dcd"
}
}
}