v1
latestOpenAPI 3.0.02026-07-2464438356.8 KBAccounts
Set developer fees for an Account
Sets or updates the developer fee configurations for a specific Account. Multiple currencies can be configured in a single request.
put/api/accounts/{id}/set-developer-fees
Path parameters
idstring uuid required
Mural Account ID
Headers
on-behalf-ofstring
Organization ID to act on behalf of
Request body
Example request
{
"payinsDeveloperFees": [
{
"developerFeePercentage": 2.5,
"type": "usd"
},
{
"developerFeePercentage": 1.8,
"type": "eur"
},
{
"developerFeePercentage": 2,
"type": "mxn"
},
{
"developerFeePercentage": 1.5,
"type": "brl"
},
{
"developerFeePercentage": 2,
"type": "ars"
}
]
}Response
Set developer fees for an Account
Example response
{
"accountDetails": {
"balancesV2": [
{
"exponent": 6,
"value": "2500000"
}
],
"payinMethods": [
{
"supportedDestinationTokens": [
{
"fees": {
"fixedTransactionFee": {
"fiatCurrencyCode": "USD"
}
},
"transactionMinimum": {
"fiatCurrencyCode": "USD"
}
}
]
}
],
"walletDetails": {
"walletAddress": "0x0000000000000000000000000000000000000000"
}
}
}