GET errors

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ErrorMessage
NameDescriptionTypeAdditional information
Category

string

None.

Error

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "category": "sample string 1",
    "error": "sample string 2",
    "message": "sample string 3"
  },
  {
    "category": "sample string 1",
    "error": "sample string 2",
    "message": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfErrorMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/myREST.Models.General">
  <ErrorMessage>
    <Category>sample string 1</Category>
    <Error>sample string 2</Error>
    <Message>sample string 3</Message>
  </ErrorMessage>
  <ErrorMessage>
    <Category>sample string 1</Category>
    <Error>sample string 2</Error>
    <Message>sample string 3</Message>
  </ErrorMessage>
</ArrayOfErrorMessage>