GET api/value-data/useralert-types

This method will retrieve user alert types supported by the system

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of

Collection of AlertType
NameDescriptionTypeAdditional information
Id

integer

None.

Type

string

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "type": "sample string 2",
    "description": "sample string 3"
  },
  {
    "id": 1,
    "type": "sample string 2",
    "description": "sample string 3"
  }
]

text/html

Sample:
[{"id":1,"type":"sample string 2","description":"sample string 3"},{"id":1,"type":"sample string 2","description":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfAlertType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.ValueTypes">
  <AlertType>
    <Id xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.Core">1</Id>
    <Description>sample string 3</Description>
    <Type>sample string 2</Type>
  </AlertType>
  <AlertType>
    <Id xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.Core">1</Id>
    <Description>sample string 3</Description>
    <Type>sample string 2</Type>
  </AlertType>
</ArrayOfAlertType>