POST /v2/transactions — bond-coupon-transaction A coupon (interest) payment received on a bond holding. Request: { "data": { "type": "bond-coupon-transaction", "attributes": { "accountAmount": "number (required) — amount deposited/withdrawn, in account currency", "grossAmount": "number (required) — total coupon amount, in instrument 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)" } }, "instrument": { "data": { "type": "instrument", "id": "string (required)" } }, "depository": { "data": { "type": "depository", "id": "string (required)" } } } } } Response (201 Created): { "data": { "id": "string", "type": "bond-coupon-transaction", "attributes": { /* same as request */ }, "relationships": { /* same as request */ } } }