Add a Receive Account
Read on adding a receive account for a receive user
POST /users/{{user_id}}/receive-users/{{receiveUserId}}/accounts
POST /users/{{user_id}}/receive-users/{{receiveUserId}}/accountscurl --location -g --request POST '{{url}}/users/{{user_id}}/receive-users/{{receive_user_id}}/accounts' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"msisdn" : "233543225243",
"wallet_type" : "TEL",
"payer_id" : "100",
"payout_method" : "WALLET"
}'curl --location -g --request POST '{{url}}/users/{{user_id}}/receive-users/{{receiveUserId}}/accounts' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"account_number":"99999999",
"account_type":"SAVINGS",
"bank_id":4,
"branch_location":null,
"branch_id":4,
"payout_method":"BANK_DEPOSIT"
}'Last updated