Iterable · Schema

ErrorResponse

Error response returned when a request fails

Cross-Channel MessagingCustomer EngagementEmailMarketing AutomationPush NotificationsSMS

Properties

Name Type Description
msg string Error message describing what went wrong
code string Error code
View JSON Schema on GitHub

JSON Schema

iterable-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Error response returned when a request fails",
  "properties": {
    "msg": {
      "type": "string",
      "description": "Error message describing what went wrong"
    },
    "code": {
      "type": "string",
      "description": "Error code"
    }
  }
}