Skip to main content
POST
/
api
/
payouts
/
account-requirements
Refresh account requirements
curl --request POST \
  --url https://business.madhousewallet.com/api/payouts/account-requirements \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "iban",
  "details": {
    "legalType": "BUSINESS"
  }
}
'
{
  "data": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token: Authorization: Bearer mw_live_<keyId>_<secret>

Query Parameters

currency
string
required

ISO 4217 target currency code

Example:

"EUR"

Body

application/json
type
string
required

Account type returned from the GET call

Example:

"iban"

details
object

Current form values collected so far

Example:
{ "legalType": "BUSINESS" }

Response

Updated requirements returned

data
object[]