Skip to main content
This action is permanent. Once deleted, the payout account cannot be restored. You will need to re-add it if needed.

Endpoint

DELETE /clients/business/payouts/{payoutAccountId}

Path parameters

payoutAccountId
string
required
The unique ID of the payout account to delete.

Headers

Authorization
string
required
Bearer YOUR_ACCESS_TOKEN
SECRET_KEY
string
required
Your API secret key.
businessId
string
required
Your business ID.

Response

status
boolean
true on success.
message
string
Confirmation message.

Code examples

curl -X DELETE https://stella-thirdparty-api.herokuapp.com/api/v1/clients/business/payouts/PAYOUT_ID \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "SECRET_KEY: YOUR_SECRET_KEY" \
  -H "businessId: YOUR_BUSINESS_ID"

Example response

{
  "status": true,
  "message": "Payout account deleted successfully"
}