v1
latestOpenAPI 3.0.12026-07-24128351404.9 KBPayouts
Create a payee bank account
Creates a new bank account for a payee under the current user, returning the account details upon success.
post/open-api/v3/payee
Request body
Example request
{
"firstName": "John",
"lastName": "Smith",
"payeeAddress": {
"addressLine1": "123 Main St",
"addressLine2": "Apt 4B",
"city": "New York",
"country": "US",
"postalCode": "10001"
}
}Response
OK
Example response
{
"code": "400001",
"message": "Invalid parameter",
"data": {
"userName": "JohnSmith",
"payeeAddress": {
"addressLine1": "123 Main St",
"addressLine2": "Apt 4B",
"city": "New York",
"country": "US",
"postalCode": "10001"
}
}
}