GET api/utils/reliabilitycodes Authentication required

Use this method to fetch all the reliability codes available.

Request

No URI or Body Parameter required

Response

Returns all the reliability codes

Output : array of objects (See Model)

Ouput Sample

  • application/json, text/json :
  • [ { "code": "sample string 1", "label": "sample string 2" }, { "code": "sample string 1", "label": "sample string 2" } ]
  • application/xml, text/xml :
  • <ArrayOfReliabilityCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kapitol.Registered.API.Models"> <ReliabilityCode> <Code>sample string 1</Code> <Label>sample string 2</Label> </ReliabilityCode> <ReliabilityCode> <Code>sample string 1</Code> <Label>sample string 2</Label> </ReliabilityCode> </ArrayOfReliabilityCode>