GET language/getPostingTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TRNPostingTypeEntity
NameDescriptionTypeAdditional information
PostingTypeId

integer

None.

PostingType

string

None.

IsActive

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PostingTypeId": 1,
    "PostingType": "sample string 2",
    "IsActive": true
  },
  {
    "PostingTypeId": 1,
    "PostingType": "sample string 2",
    "IsActive": true
  }
]

text/html

Sample:
[{"PostingTypeId":1,"PostingType":"sample string 2","IsActive":true},{"PostingTypeId":1,"PostingType":"sample string 2","IsActive":true}]

application/xml, text/xml

Sample:
<ArrayOfTRNPostingTypeEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ListenerOnline.BusinessEntities.TRN">
  <TRNPostingTypeEntity>
    <IsActive>true</IsActive>
    <PostingType>sample string 2</PostingType>
    <PostingTypeId>1</PostingTypeId>
  </TRNPostingTypeEntity>
  <TRNPostingTypeEntity>
    <IsActive>true</IsActive>
    <PostingType>sample string 2</PostingType>
    <PostingTypeId>1</PostingTypeId>
  </TRNPostingTypeEntity>
</ArrayOfTRNPostingTypeEntity>