POST api/ManagedFunds/Redemption

Managed Fund Redemption Creation

Request Information

URI Parameters

None.

Body Parameters

ManagedFundRedemptionCreation
NameDescriptionTypeAdditional information
RedeemingASXCode

ASX Code for the mFund redemption

string

Required

Quantity

Quantity of the mFund redemption

decimal number

Required

FATCAApplicable

Foreign Account Tax Compliance Act for mFund application

boolean

None.

ClientID

Unique client identifier

integer

Required

CreatorID

The person ID whom this order is for. Required if you are submitting this instruction on behalf of a person

integer

None.

DocumentAcceptance

Only applicable for mFund orders. Client has read and understood the fact sheet, PDS and fund profile

boolean

Required

BrokerageOverride

The default client brokerage is able to be overridden with a specified $ amount, % or alternative schedule

BrokerageOverride

None.

Request Formats

application/json, text/json

Sample:
{
  "RedeemingASXCode": "ABCD",
  "Quantity": 100.0,
  "FATCAApplicable": false,
  "ClientID": 12345,
  "CreatorID": 12345,
  "DocumentAcceptance": true,
  "BrokerageOverride": null
}

application/xml, text/xml

Sample:
<ManagedFundRedemptionCreation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.ManagedFunds">
  <BrokerageOverride i:nil="true" />
  <ClientID>12345</ClientID>
  <CreatorID>12345</CreatorID>
  <DocumentAcceptance>true</DocumentAcceptance>
  <FATCAApplicable>false</FATCAApplicable>
  <Quantity>100</Quantity>
  <RedeemingASXCode>ABCD</RedeemingASXCode>
</ManagedFundRedemptionCreation>

Response Information

Resource Description

None.

Response Formats

Error Response Information

Resource Description

string

Error Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>