GET api/SuperFund/{superFundCode}

Request Information

URI Parameters

(i.e.queryString parameters in the form ?param1={param1}&param2={param2})

NameDescriptionTypeAdditional information
superFundCode

string

Required

page

integer

Default value is 1

pageSize

integer

Default value is 1000

Body Parameters

None.

Response Information

Resource Description

SuperFundView
NameDescriptionTypeAdditional information
idSuperFund

Gets or sets the unique identifier for the super fund.

integer

None.

FundCode

Gets or sets the code of the super fund.

string

None.

FundName

Gets or sets the name of the super fund.

string

None.

Address1

Gets or sets the first line of the address.

string

None.

Address2

Gets or sets the second line of the address.

string

None.

Suburb

Gets or sets the suburb of the super fund.

string

None.

State

Gets or sets the state of the super fund.

string

None.

PostCode

Gets or sets the postcode of the super fund.

string

None.

PhoneAdvice

Gets or sets the advice phone number.

string

None.

PhoneAdmin

Gets or sets the admin phone number.

string

None.

Fax

Gets or sets the fax number.

string

None.

EmailAddress

Gets or sets the email address.

string

None.

Abn

Gets or sets the ABN of the super fund.

string

None.

Spin

Gets or sets the SPIN of the super fund.

string

None.

Esa

Gets or sets the ESA of the super fund.

string

None.

SelfManaged

Gets or sets a value indicating whether the fund is self-managed.

boolean

None.

FundBSB

string

None.

FundAccount
 Number

string

None.

FundAccountName

string

None.

SuperScheme

Gets or sets the list of super schemes associated with the fund.

Collection of SuperSchemeDto

None.

AddsDeds

Gets or sets the list of additions/deductions associated with the fund.

Collection of AddsDedsDto

None.

Response Formats

application/json, text/json

Sample:
{
  "idSuperFund": 1,
  "fundCode": "sample string 2",
  "fundName": "sample string 3",
  "address1": "sample string 4",
  "address2": "sample string 5",
  "suburb": "sample string 6",
  "state": "sample string 7",
  "postCode": "sample string 8",
  "phoneAdvice": "sample string 9",
  "phoneAdmin": "sample string 10",
  "fax": "sample string 11",
  "emailAddress": "sample string 12",
  "abn": "sample string 13",
  "spin": "sample string 14",
  "esa": "sample string 15",
  "selfManaged": true,
  "fundBSB": "sample string 17",
  "fundAccountNumber": "sample string 18",
  "fundAccountName": "sample string 19",
  "superScheme": [
    {
      "superSchemeId": 1,
      "superSchemeCode": "sample string 2",
      "superSchemeDescription": "sample string 3",
      "superSchemeType": "sample string 4"
    },
    {
      "superSchemeId": 1,
      "superSchemeCode": "sample string 2",
      "superSchemeDescription": "sample string 3",
      "superSchemeType": "sample string 4"
    }
  ],
  "addsDeds": [
    {
      "addDedsId": 1,
      "addDedsCode": "sample string 2",
      "addDedsDescription": "sample string 3"
    },
    {
      "addDedsId": 1,
      "addDedsCode": "sample string 2",
      "addDedsDescription": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<SuperFundView xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <idSuperFund>1</idSuperFund>
  <FundCode>sample string 2</FundCode>
  <FundName>sample string 3</FundName>
  <Address1>sample string 4</Address1>
  <Address2>sample string 5</Address2>
  <Suburb>sample string 6</Suburb>
  <State>sample string 7</State>
  <PostCode>sample string 8</PostCode>
  <PhoneAdvice>sample string 9</PhoneAdvice>
  <PhoneAdmin>sample string 10</PhoneAdmin>
  <Fax>sample string 11</Fax>
  <EmailAddress>sample string 12</EmailAddress>
  <Abn>sample string 13</Abn>
  <Spin>sample string 14</Spin>
  <Esa>sample string 15</Esa>
  <SelfManaged>true</SelfManaged>
  <FundBSB>sample string 17</FundBSB>
  <FundAccountNumber>sample string 18</FundAccountNumber>
  <FundAccountName>sample string 19</FundAccountName>
  <SuperSchemeJson>sample string 20</SuperSchemeJson>
  <AddsDedsJson>sample string 21</AddsDedsJson>
  <SuperScheme>
    <SuperSchemeDto>
      <SuperSchemeId>1</SuperSchemeId>
      <SuperSchemeCode>sample string 2</SuperSchemeCode>
      <SuperSchemeDescription>sample string 3</SuperSchemeDescription>
      <SuperSchemeType>sample string 4</SuperSchemeType>
    </SuperSchemeDto>
    <SuperSchemeDto>
      <SuperSchemeId>1</SuperSchemeId>
      <SuperSchemeCode>sample string 2</SuperSchemeCode>
      <SuperSchemeDescription>sample string 3</SuperSchemeDescription>
      <SuperSchemeType>sample string 4</SuperSchemeType>
    </SuperSchemeDto>
  </SuperScheme>
  <AddsDeds>
    <AddsDedsDto>
      <AddDedsId>1</AddDedsId>
      <AddDedsCode>sample string 2</AddDedsCode>
      <AddDedsDescription>sample string 3</AddDedsDescription>
    </AddsDedsDto>
    <AddsDedsDto>
      <AddDedsId>1</AddDedsId>
      <AddDedsCode>sample string 2</AddDedsCode>
      <AddDedsDescription>sample string 3</AddDedsDescription>
    </AddsDedsDto>
  </AddsDeds>
</SuperFundView>