Get Error Codes

4.14. Get Error Codes

GET /cm/codes/error-codes

Description

Get a list of all error codes

Responses

HTTP Code Description Schema

200

Success

500

Internal server error

Consumes

  • application/xml

Produces

  • application/xml

Tags

  • ErrorCodes

Example HTTP request

Request path
/cm/codes/error-codes

Example HTTP response

Response 200
<?xml version="1.0" encoding="UTF-8"?>
<ErrorCodes>
  <ErrorCode Code="321" Description="Required field missing"/>
</ErrorCodes>
Response 500
<?xml version="1.0" encoding="UTF-8"?>
<ErrorResponse CorrelationID="8b417d6a-f3df-4d65-870c-240378b8ad3e" Endpoint="RoomAmenities">
  <Errors>
    <Error Code="321" ShortText="Required field missing" Status="NotProcessed"/>
  </Errors>
  <Warnings>
    <Warning Code="123" ShortText="Please try again in a few minutes" Status="Incomplete"/>
  </Warnings>
</ErrorResponse>