GET api/vouchertypes/list

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of VoucherTypeData
NameDescriptionTypeAdditional information
Name

string

None.

AfipCode

integer

None.

ID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "AfipCode": 1,
    "ID": 1
  },
  {
    "Name": "sample string 1",
    "AfipCode": 1,
    "ID": 1
  }
]

text/xml

Sample:
<ArrayOfVoucherTypeData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data">
  <VoucherTypeData>
    <ID>1</ID>
    <AfipCode>1</AfipCode>
    <Name>sample string 1</Name>
  </VoucherTypeData>
  <VoucherTypeData>
    <ID>1</ID>
    <AfipCode>1</AfipCode>
    <Name>sample string 1</Name>
  </VoucherTypeData>
</ArrayOfVoucherTypeData>