GET debtortypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of DebtorTypeEntity
NameDescriptionTypeAdditional information
DebtorTypeID

integer

None.

DebtorType

string

None.

Active

integer

None.

TenantID

integer

None.

Version

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DebtorTypeID": 1,
    "DebtorType": "sample string 2",
    "Active": 3,
    "TenantID": 4,
    "Version": 1.0
  },
  {
    "DebtorTypeID": 1,
    "DebtorType": "sample string 2",
    "Active": 3,
    "TenantID": 4,
    "Version": 1.0
  }
]

text/html

Sample:
[{"DebtorTypeID":1,"DebtorType":"sample string 2","Active":3,"TenantID":4,"Version":1.0},{"DebtorTypeID":1,"DebtorType":"sample string 2","Active":3,"TenantID":4,"Version":1.0}]

application/xml, text/xml

Sample:
<ArrayOfDebtorTypeEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ListenerOnline.BusinessEntities.DebtorTypes">
  <DebtorTypeEntity>
    <Active>3</Active>
    <DebtorType>sample string 2</DebtorType>
    <DebtorTypeID>1</DebtorTypeID>
    <TenantID>4</TenantID>
    <Version>1</Version>
  </DebtorTypeEntity>
  <DebtorTypeEntity>
    <Active>3</Active>
    <DebtorType>sample string 2</DebtorType>
    <DebtorTypeID>1</DebtorTypeID>
    <TenantID>4</TenantID>
    <Version>1</Version>
  </DebtorTypeEntity>
</ArrayOfDebtorTypeEntity>