StatusMessage Data Type

A status message with a response code and optional message. This is usually returned upon an unsuccessful call.

Properties
name data type constraints description
code number required int An integer which corresponds to an HTTP respond code.
message string   An optional message which clarifies the reason for the response code.

Example

{
  "code" : 12345,
  "message" : "..."
}