Update a Receive Account
PATCH /users/{{user_id}}/receive-users/{{receive_user_id}}/accounts/{{receive_user_account_id}}
PATCH /users/{{user_id}}/receive-users/{{receive_user_id}}/accounts/{{receive_user_account_id}}curl --location -g --request PATCH '{{url}}/users/{{user_id}}/receive-users/{{receive_user_id}}/accounts/{{receive_user_account_id}}' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"account_number": "0037275350",
"payout_method": "BANK_DEPOSIT",
"account_type": "CHECKING",
"bank_id": 4,
"branch_id": 45,
"branch_location": 1,
"rtn_number": "4342492422",
"swift_bic_code": "OCCICOBCBO8"
}'curl --location -g --request PATCH '{{url}}/users/{{user_id}}/receive-users/{{receive_user_id}}/accounts/{{receive_user_account_id}}' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"msisdn": "237653801972",
"wallet_type": "TELS",
"payer_id": 42,
"payout_method": "WALLET"
}'Last updated