GET Requests/ListWorkPlanTypes

Returns a list of Work Plan Types

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of WorkplanTypeDTO
NameDescriptionTypeAdditional information
ID

Gets or sets the ID

globally unique identifier

None.

WorkplanTypeID

Gets or set the Workplan Type ID

integer

None.

Name

Name

string

None.

NetworkID

Gets or set the ID of network

globally unique identifier

None.

Acronym

Gets or set the acronym for the workplan type.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "ID": "f09c784a-7806-4a3b-8782-1052d1aa5acc",
      "WorkplanTypeID": 1,
      "Name": "sample string 2",
      "NetworkID": "4cd9070b-0a4a-4c52-8d2d-372f71b6dbee",
      "Acronym": "sample string 4"
    },
    {
      "ID": "f09c784a-7806-4a3b-8782-1052d1aa5acc",
      "WorkplanTypeID": 1,
      "Name": "sample string 2",
      "NetworkID": "4cd9070b-0a4a-4c52-8d2d-372f71b6dbee",
      "Acronym": "sample string 4"
    }
  ]
}

text/javascript

Sample:
{"results":[{"ID":"f09c784a-7806-4a3b-8782-1052d1aa5acc","WorkplanTypeID":1,"Name":"sample string 2","NetworkID":"4cd9070b-0a4a-4c52-8d2d-372f71b6dbee","Acronym":"sample string 4"},{"ID":"f09c784a-7806-4a3b-8782-1052d1aa5acc","WorkplanTypeID":1,"Name":"sample string 2","NetworkID":"4cd9070b-0a4a-4c52-8d2d-372f71b6dbee","Acronym":"sample string 4"}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<ArrayOfWorkplanTypeDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <WorkplanTypeDTO>
    <Acronym>sample string 4</Acronym>
    <ID>f09c784a-7806-4a3b-8782-1052d1aa5acc</ID>
    <Name>sample string 2</Name>
    <NetworkID>4cd9070b-0a4a-4c52-8d2d-372f71b6dbee</NetworkID>
    <WorkplanTypeID>1</WorkplanTypeID>
  </WorkplanTypeDTO>
  <WorkplanTypeDTO>
    <Acronym>sample string 4</Acronym>
    <ID>f09c784a-7806-4a3b-8782-1052d1aa5acc</ID>
    <Name>sample string 2</Name>
    <NetworkID>4cd9070b-0a4a-4c52-8d2d-372f71b6dbee</NetworkID>
    <WorkplanTypeID>1</WorkplanTypeID>
  </WorkplanTypeDTO>
</ArrayOfWorkplanTypeDTO>