GET taxForms

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TaxForm
NameDescriptionTypeAdditional information
TaxFormType

TaxFormType

None.

Caption

string

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TaxFormType": 1,
    "Caption": "sample string 1",
    "Description": "sample string 2"
  },
  {
    "TaxFormType": 1,
    "Caption": "sample string 1",
    "Description": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTaxForm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBI.WebAPI.RegistrationGateway.Business.Models.Registration">
  <TaxForm>
    <Caption>sample string 1</Caption>
    <Description>sample string 2</Description>
    <TaxFormType>W9</TaxFormType>
  </TaxForm>
  <TaxForm>
    <Caption>sample string 1</Caption>
    <Description>sample string 2</Description>
    <TaxFormType>W9</TaxFormType>
  </TaxForm>
</ArrayOfTaxForm>