POST api/admin/CodeTable/VoluntaryFees

Get all current valid Voluntary Fee Codes

Request Information

URI Parameters

None.

Body Parameters

Request
NameDescriptionTypeAdditional information

Authentication

Authentication

None.

Request Formats

application/json, text/json

Sample:
{
  "Authentication": {
    "AgentCustomerNumber": 1,
    "DealerLicenseType": "sample string 1",
    "DealerLicenseNumber": 1,
    "DealerLicenseSuffix": 1,
    "EmpCustomerNumber": 1,
    "LogNumber": 1,
    "DealerLicensePin": "sample string 2",
    "EmployeeType": "sample string 3"
  }
}

application/xml, text/xml

Sample:
<Request xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Authentication>
    <AgentCustomerNumber>1</AgentCustomerNumber>
    <DealerLicenseType>sample string 1</DealerLicenseType>
    <DealerLicenseNumber>1</DealerLicenseNumber>
    <DealerLicenseSuffix>1</DealerLicenseSuffix>
    <EmpCustomerNumber>1</EmpCustomerNumber>
    <LogNumber>1</LogNumber>
    <DealerLicensePin>sample string 2</DealerLicensePin>
    <EmployeeType>sample string 3</EmployeeType>
  </Authentication>
</Request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of FeeTypeCode
NameDescriptionTypeAdditional information

FeeCode

string

None.

RegistrationVoluntaryContribution

boolean

None.

TitleVoluntaryContribution

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FeeCode": "sample string 1",
    "RegistrationVoluntaryContribution": true,
    "TitleVoluntaryContribution": true
  },
  {
    "FeeCode": "sample string 1",
    "RegistrationVoluntaryContribution": true,
    "TitleVoluntaryContribution": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfFeeTypeCode xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <FeeTypeCode>
    <FeeCode>sample string 1</FeeCode>
    <RegistrationVoluntaryContribution>true</RegistrationVoluntaryContribution>
    <TitleVoluntaryContribution>true</TitleVoluntaryContribution>
  </FeeTypeCode>
  <FeeTypeCode>
    <FeeCode>sample string 1</FeeCode>
    <RegistrationVoluntaryContribution>true</RegistrationVoluntaryContribution>
    <TitleVoluntaryContribution>true</TitleVoluntaryContribution>
  </FeeTypeCode>
</ArrayOfFeeTypeCode>