Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of communication method types.

Collection of Pico.CommunicationMethodType
NameDescriptionTypeAdditional information
description

Gets or sets the description.

string

None.

format

Gets or sets the format.

string

None.

isActive

Gets or sets a value indicating whether this is active.

boolean

None.

id

Gets or sets the communication method type identifier.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "description": "sample String 1",
    "format": "sample String 2",
    "isActive": true,
    "id": "4"
  },
  {
    "description": "sample String 1",
    "format": "sample String 2",
    "isActive": true,
    "id": "4"
  }
]

text/html

Sample:
[{"description":"sample String 1","format":"sample String 2","isActive":true,"id":"4"},{"description":"sample String 1","format":"sample String 2","isActive":true,"id":"4"}]

application/xml, text/xml

Sample:
<ArrayOfCommunicationMethodType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <CommunicationMethodType>
    <Description>sample String 1</Description>
    <Format>sample String 2</Format>
    <IsActive>true</IsActive>
    <CommunicationMethodTypeId>4</CommunicationMethodTypeId>
  </CommunicationMethodType>
  <CommunicationMethodType>
    <Description>sample String 1</Description>
    <Format>sample String 2</Format>
    <IsActive>true</IsActive>
    <CommunicationMethodTypeId>4</CommunicationMethodTypeId>
  </CommunicationMethodType>
</ArrayOfCommunicationMethodType>