Request Information

URI Parameters

NameDescriptionTypeAdditional information
organizationId

The organization identifier.

integer

None.

Body Parameters

None.

Response Information

Resource Description

A list of communication methods.

Collection of Pico.CommunicationMethod
NameDescriptionTypeAdditional information
order

Gets or sets the order.

integer

None.

value

Gets or sets the value.

string

None.

id

Gets or sets the communication method identifier.

integer

None.

communicationMethodType

Gets or sets the communication method type identifier.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "order": 1,
    "value": "sample String 1",
    "id": "2",
    "communicationMethodType": "3"
  },
  {
    "order": 1,
    "value": "sample String 1",
    "id": "2",
    "communicationMethodType": "3"
  }
]

text/html

Sample:
[{"order":1,"value":"sample String 1","id":"2","communicationMethodType":"3"},{"order":1,"value":"sample String 1","id":"2","communicationMethodType":"3"}]

application/xml, text/xml

Sample:
<ArrayOfCommunicationMethod xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <CommunicationMethod>
    <Order>1</Order>
    <Value>sample String 1</Value>
    <CommunicationMethodId>2</CommunicationMethodId>
    <CommunicationMethodTypeId>3</CommunicationMethodTypeId>
  </CommunicationMethod>
  <CommunicationMethod>
    <Order>1</Order>
    <Value>sample String 1</Value>
    <CommunicationMethodId>2</CommunicationMethodId>
    <CommunicationMethodTypeId>3</CommunicationMethodTypeId>
  </CommunicationMethod>
</ArrayOfCommunicationMethod>