POST /v2/transactions — index-linked-bond-redemption-transaction Redemption of an index-linked bond at maturity or call. `indexFactor` scales the principal for inflation accrual. Request: { "data": { "type": "index-linked-bond-redemption-transaction", "attributes": { "accountAmount": "number (required) — amount deposited/withdrawn, in account currency", "indexFactor": "number (required) — index factor applied for the date", "unitPrice": "number (required) — price per unit", "units": "number (required) — number of units redeemed", "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": "index-linked-bond-redemption-transaction", "attributes": { /* same as request */ }, "relationships": { /* same as request */ } } }