POST /v2/transactions — fee-transaction A fee charged against an account (custody, management, or other). Note: A fee transaction affects the account balance, but the impact appears on the corresponding fee instrument — not on the original investment instrument. Request: { "data": { "type": "fee-transaction", "attributes": { "accountAmount": "number (required) — amount deposited/withdrawn, in account currency", "category": "string (required) — one of: custody, management, other (default: other)", "comment": "string (optional)", "tradeDate": "string, ISO 8601 (required) — trade date, end-of-day", "valueDate": "string, ISO 8601 (required) — value date, end-of-day" }, "relationships": { "account": { "data": { "type": "account", "id": "string (required)" } } } } } Response (201 Created): { "data": { "id": "string", "type": "fee-transaction", "attributes": { /* same as request */ }, "relationships": { /* same as request */ } } }