POST /v2/transactions — account-interest-transaction Interest paid into / charged on a bank account by the bank itself (no instrument involved). Request: { "data": { "type": "account-interest-transaction", "attributes": { "accountAmount": "number (required) — amount deposited/withdrawn, in account currency", "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": "account-interest-transaction", "attributes": { /* same as request */ }, "relationships": { /* same as request */ } } }