POST

/BizTransaction/Redemption

When to Use

  • Process partial or full investment withdrawals from investor accounts
  • Handle retirement payouts and pension distribution requests
  • Execute systematic withdrawal plans for regular income payments
  • Facilitate portfolio rebalancing through strategic redemptions
  • Process final redemptions for investment account closures

Prerequisites

  • Account must have sufficient investment units to cover redemption amount
  • Active investment allowing redemptions without trading suspensions
  • Verified banking details configured for settlement payments

Important Considerations

⚠️ Critical Implementation Notes

  • Cooling-off Period Management: New investments may be subject to 14-day cooling-off periods with potential adjustment penalties
  • CGT Event Triggering: Redemptions create CGT events requiring accurate cost base calculations and tax reporting
  • Investor Protection Requirements: Large redemptions may require investor confirmation and suitability assessments
  • Liquidity Gates: Some investments impose redemption gates limiting withdrawal amounts during market stress
  • Market Timing Restrictions: Redemptions processed after cut-off times use next business day pricing potentially affecting proceeds
  • AML/CTF Monitoring: Large redemptions above $10,000 AUD trigger enhanced monitoring and potential AUSTRAC reporting

Description

Processes investment redemptions by liquidating specified investment units and providing cash proceeds to the investor. The system calculates exit fees, handles fractional units, and maintains complete audit trails for tax and compliance reporting.

Required Headers - See Authentication

HeaderValueDescription
Content-Typeapplication/jsonRequest content type
Authorization{accessToken}Bearer token for API access
Version2.0API version identifier

Request Body

Parameter Type Required Description
productID >
integer (int32)
Native product identifier validating investment belongs to correct fund structure.
externalProductId >
string
External product identifier for cross-system product correlation.
amount >
number (double)
Dollar amount to redeem (system converts to units: amount ÷ price = units redeemed, redemptions ≥$10,000 AUD trigger enhanced monitoring).
overridePrice
number (double)
Optional
Manual price override for special circumstances (default: 0 uses current investment redemption price for transactionDate).
comment
string
Optional
Audit trail notation for redemption purpose and context (appears on investor statements).
accountID >
integer (int32)
Native account identifier specifying account from which to redeem units (system validates sufficient holdings available).
externalAccountId >
string
External account identifier for cross-platform integration.
exitFeeAmount >
number (double)
Fixed dollar exit fee (both exitFeeAmount and exitFeePercent apply cumulatively for total fee calculation).
exitFeePercent >
number (double)
Exit fee as percentage of redemption proceeds (e.g., 1.5 = 1.5% fee, combined with exitFeeAmount for total fee).
externalBizTransactionId
string
Optional
External transaction identifier for idempotency and preventing duplicate redemptions during integration failures.
investmentID >
integer (int32)
Native investment identifier determining redemption pricing and fee structures (quantity × redemptionPrice = gross proceeds).
externalInvestmentId >
string
External investment identifier for cross-platform integration using fund codes or APIR codes.
quantity >
number (double)
Exact unit quantity to redeem (system converts to dollars: quantity × price = gross proceeds, account must have sufficient holdings).
reasonID >
integer (int32)
Redemption reason classification for regulatory reporting and compliance tracking.
transactionDate >
string (date)
Transaction settlement date determining redemption pricing and CGT event date (format: YYYY-MM-DD, must not be DateOnly.MinValue per controller line 110).
productID
integer (int32)
Native product identifier validating investment belongs to correct fund structure.
externalProductId
string
External product identifier for cross-system product correlation.
amount
number (double)
Dollar amount to redeem (system converts to units: amount ÷ price = units redeemed, redemptions ≥$10,000 AUD trigger enhanced monitoring).
overridePrice
number (double)
Optional
Manual price override for special circumstances (default: 0 uses current investment redemption price for transactionDate).
comment
string
Optional
Audit trail notation for redemption purpose and context (appears on investor statements).
accountID
integer (int32)
Native account identifier specifying account from which to redeem units (system validates sufficient holdings available).
externalAccountId
string
External account identifier for cross-platform integration.
exitFeeAmount
number (double)
Fixed dollar exit fee (both exitFeeAmount and exitFeePercent apply cumulatively for total fee calculation).
exitFeePercent
number (double)
Exit fee as percentage of redemption proceeds (e.g., 1.5 = 1.5% fee, combined with exitFeeAmount for total fee).
externalBizTransactionId
string
Optional
External transaction identifier for idempotency and preventing duplicate redemptions during integration failures.
investmentID
integer (int32)
Native investment identifier determining redemption pricing and fee structures (quantity × redemptionPrice = gross proceeds).
externalInvestmentId
string
External investment identifier for cross-platform integration using fund codes or APIR codes.
quantity
number (double)
Exact unit quantity to redeem (system converts to dollars: quantity × price = gross proceeds, account must have sufficient holdings).
reasonID
integer (int32)
Redemption reason classification for regulatory reporting and compliance tracking.
transactionDate
string (date)
Transaction settlement date determining redemption pricing and CGT event date (format: YYYY-MM-DD, must not be DateOnly.MinValue per controller line 110).

Example Requests

json
{
  "productID": 10,
  "externalProductId": "",
  "amount": 25000.00,
  "overridePrice": 0,
  "comment": "Partial redemption for education expenses",
  "accountID": 12345,
  "externalAccountId": "",
  "exitFeeAmount": 0,
  "exitFeePercent": 1.5,
  "externalBizTransactionId": "RED-2024-001",
  "investmentID": 25,
  "externalInvestmentId": "",
  "quantity": 0,
  "reasonID": 1,
  "transactionDate": "2025-08-14"
}

Response Examples

json
{
  "result": true,
  "message": "Redemption processed successfully",
  "recordCount": 1,
  "data": {
    "bizTransactionID": 4001,
    "externalBizTransactionId": "RED-2024-001",
    "bizTransactionTypeID": 2,
    "typeName": "Redemption",
    "movementReasonCode": "PARTIAL_WITHDRAWAL",
    "parentBizTransactionID": null,
    "transactionDate": "2025-08-14T00:00:00Z",
    "productID": 10,
    "externalProductId": "FUND-001",
    "accountID": 12345,
    "externalAccountId": "ACC-12345",
    "accountNumber": "ACC001234",
    "bizEntityName": "Smith Family Trust",
    "investmentID": 25,
    "externalInvestmentId": "INV-GROWTH",
    "securityCode": "GRW001",
    "investmentName": "Growth Investment Class A",
    "investmentPrice": 1.2750,
    "comment": "Partial redemption for education expenses",
    "corporateActionID": null,
    "externalCorporateActionId": null,
    "corporateActionName": null,
    "amount": -25000.00,
    "quantity": -19607.84,
    "transactionClosingAmount": null,
    "transactionClosingQuantity": null,
    "accountClosingAmount": null,
    "accountClosingQuantity": null,
    "createdDate": "2025-08-14T10:30:15Z",
    "updatedDate": null,
    "bizTransactionStatusID": 1,
    "statusName": "Complete"
  }
}