Update/Overhaul Connected Account
This helps you update any of the data required to operate a subaccount
PATCH
https://api2.ourpass.co/v1/api/subaccounts/:subaccountId
Path Parameters
Name
Type
Description
subaccountId*
String
This is the unique ID of the connected account to be updated.
Headers
Name
Type
Description
apiKey*
String
Pass your api key in the request header to authorise the call
{
"success": true,
"message": "Business Subaccount updated"
}
curl --location --request PATCH 'https://api2.ourpass.co/v1/api/subaccounts/1295' \
--data-raw '{
"subAccountEmail": "[email protected]",
"txCap": 1000,
"txPercentage": 10,
"userMobile": "Hello",
"businessName": "Hello",
"bankName": "test",
"bankCode": "Hello",
"accountNumber": "Hello",
"accountName": "Hello",
"lastName": "true",
"firstName": "true"
}'
Last updated
Was this helpful?