Payees
Create a payee account
put/api/v2/payees/{payeeUid}/account
Path parameters
payeeUidstring uuid required
Example:aaaaaaaa-aaaa-4aaa-aaaa-aaaaaaaaaaaa
Unique identifier of the payee
Request body
Example request
{
"description": "Bob's business account",
"defaultAccount": true,
"countryCode": "GB",
"accountIdentifier": "12345678",
"bankIdentifier": "123456",
"bankIdentifierType": "SORT_CODE"
}Response
Successful operation
Example response
{
"payeeAccountUid": "66776677-6677-6677-6677-667766776677",
"success": true,
"errors": [
{
"message": "Something about the error"
}
]
}