POST roleaccess/GetRoleTitleList

Request Information

URI Parameters

None.

Body Parameters

iGetRoleTitleList
NameDescriptionTypeAdditional information
companyID

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "companyID": "2f8e5322-1ea6-4c4b-b611-04aa6f51c28a"
}

application/xml, text/xml

Sample:
<iGetRoleTitleList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WNTY_DAT.Model">
  <companyID>2f8e5322-1ea6-4c4b-b611-04aa6f51c28a</companyID>
</iGetRoleTitleList>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

oGetRoleTitleListResponse
NameDescriptionTypeAdditional information
Records

Collection of oGetRoleTitleList

None.

StatusCode

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Records": [
    {
      "roleTitleID": "sample string 1",
      "roleID": "sample string 2",
      "roleName": "sample string 3",
      "name": "sample string 4",
      "description": "sample string 5",
      "status": "sample string 6",
      "createdDate": "sample string 7"
    },
    {
      "roleTitleID": "sample string 1",
      "roleID": "sample string 2",
      "roleName": "sample string 3",
      "name": "sample string 4",
      "description": "sample string 5",
      "status": "sample string 6",
      "createdDate": "sample string 7"
    }
  ],
  "StatusCode": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<oGetRoleTitleListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WNTY_DAT.Model">
  <Message>sample string 2</Message>
  <Records>
    <oGetRoleTitleList>
      <createdDate>sample string 7</createdDate>
      <description>sample string 5</description>
      <name>sample string 4</name>
      <roleID>sample string 2</roleID>
      <roleName>sample string 3</roleName>
      <roleTitleID>sample string 1</roleTitleID>
      <status>sample string 6</status>
    </oGetRoleTitleList>
    <oGetRoleTitleList>
      <createdDate>sample string 7</createdDate>
      <description>sample string 5</description>
      <name>sample string 4</name>
      <roleID>sample string 2</roleID>
      <roleName>sample string 3</roleName>
      <roleTitleID>sample string 1</roleTitleID>
      <status>sample string 6</status>
    </oGetRoleTitleList>
  </Records>
  <StatusCode>true</StatusCode>
</oGetRoleTitleListResponse>