v1
latestOpenAPI 3.1.0Proprietary2026-07-2464170247.4 KBPricing
Update Partner Fee
Partially update a partner fee. Only rate fields (rate, fixed, reverse_rate) can be changed; omitted fields are left unchanged. The fee_type and scope (currency, payment rail, token, network, asset pair) are fixed — delete the fee and create a new one to change those.
patch/v1/accounts/{account_id}/partner-fees/{fee_id}
Path parameters
account_idstring required
Account ID (main or sub-account)
fee_idstring required
Partner fee ID exposed by OpenAPI.
Example:e9ece207-8fd6-400e-872b-409701e57b74
Partner fee ID (UUID format)
Request body
Example request
{
"rate": "0.001",
"fixed": "0.5",
"reverse_rate": "0.0015"
}Response
Example response
{
"fee_id": "e9ece207-8fd6-400e-872b-409701e57b74",
"fee": {
"currency": "USD",
"payment_rail": "US_FEDWIRE",
"rate": "0.001",
"fixed": "0.5"
},
"created_at": "2026-06-11T08:30:00Z",
"modified_at": "2026-06-11T08:30:00Z"
}