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

NameTypeDescription

subaccountId*

String

This is the unique ID of the connected account to be updated.

Headers

NameTypeDescription

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": "dan@test.com.ng",
  "txCap": 1000,
  "txPercentage": 10,
  "userMobile": "Hello",
  "businessName": "Hello",
  "bankName": "test",
  "bankCode": "Hello",
  "accountNumber": "Hello",
  "accountName": "Hello",
  "lastName": "true",
  "firstName": "true"
}'

Last updated