curl --request POST \
--url http://localhost:4000/v1/payout/recipients \
--header 'Content-Type: application/json' \
--data '
{
"name": "Amazon",
"account_owner_type": "business",
"address": {
"street_line_1": "123 Main St",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "US"
},
"email": "payments@amazon.com"
}
'