GET department/postingtypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PostingTypeEntity
NameDescriptionTypeAdditional information
PostingTypeId

integer

None.

PostingType

string

None.

IsActive

boolean

None.

TOSOURCE

string

None.

Response Formats

application/json, text/json

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

text/html

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

application/xml, text/xml

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