Order Refund Reasons

V1

The Refunds Reasons endpoint provides a list of valid reasons for product refunds.


Endpoints

Verb Endpoint Description
GET /v1/refund-reasons Get all refund reasons

Examples

Get all refund reasons
GET  /v1/refund-reasons

Response

{
  "refundReasons": [
    {
      "description": "Blizzard",
      "name": "Blizzard",
      "typeDescription": "Act of God"
    },
    {
      "description": "Earthquake",
      "name": "Earthquake",
      "typeDescription": "Act of God"
    },
    {
      "description": "Flood",
      "name": "Flood",
      "typeDescription": "Act of God"
    },
    {
      "description": "Hurricane",
      "name": "Hurricane",
      "typeDescription": "Act of God"
    },
    {
      "description": "Other Act Of God",
      "name": "OtherActOfGod",
      "typeDescription": "Act of God"
    },
    {
      "description": "Tornado",
      "name": "Tornado",
      "typeDescription": "Act of God"
    },
    {
      "description": "Scheduling Error",
      "name": "SchedulingError",
      "typeDescription": "Auditorium Closure"
    },
    {
      "description": "Technical Issue",
      "name": "TechnicalIssue",
      "typeDescription": "Auditorium Closure"
    },
    {
      "description": "Unforeseen Maintenance",
      "name": "UnforeseenMaintenance",
      "typeDescription": "Auditorium Closure"
    },
    {
      "description": "Not all in Party will be attending",
      "name": "NotAllInPartyWillBeAttending",
      "typeDescription": "Change of Plans"
    },
    {
      "description": "Duplicate Charges",
      "name": "DuplicateCharges",
      "typeDescription": "Error on AMC Website"
    },
    {
      "description": "Error on Website",
      "name": "ErrorOnWebsite",
      "typeDescription": "Error on AMC Website"
    },
    {
      "description": "Payment Error",
      "name": "PaymentError",
      "typeDescription": "Error on AMC Website"
    },
    {
      "description": "Show Cancelled",
      "name": "ShowCancelled",
      "typeDescription": "Error on AMC Website"
    },
    {
      "description": "Changed Mind/Can't Make Show",
      "name": "ChangedMindCannotMakeShow",
      "typeDescription": "Guest Self Service"
    },
    {
      "description": "Too Many Tickets",
      "name": "TooManyTickets",
      "typeDescription": "Guest Self Service"
    },
    {
      "description": "Wrong Day",
      "name": "WrongDay",
      "typeDescription": "Guest Self Service"
    },
    {
      "description": "Wrong Movie/Format",
      "name": "WrongMovieFormat",
      "typeDescription": "Guest Self Service"
    },
    {
      "description": "Wrong Seat(s)",
      "name": "WrongSeats",
      "typeDescription": "Guest Self Service"
    },
    {
      "description": "Wrong Theatre",
      "name": "WrongTheatre",
      "typeDescription": "Guest Self Service"
    },
    {
      "description": "Wrong Ticket Type",
      "name": "WrongTicketType",
      "typeDescription": "Guest Self Service"
    },
    {
      "description": "Wrong Time",
      "name": "WrongTime",
      "typeDescription": "Guest Self Service"
    },
    {
      "description": "Oversell due to crossovers",
      "name": "Oversell",
      "typeDescription": "Oversell due to crossovers"
    },
    {
      "description": "Selected Wrong Qty/Item",
      "name": "SelectedWrongQtyItem",
      "typeDescription": "Selected Wrong Qty/Item"
    },
    {
      "description": "Auditorium Disturbances",
      "name": "Disturbances",
      "typeDescription": "Service Shortfall"
    },
    {
      "description": "Auditorium Environment Concerns",
      "name": "EnvironmentConcerns",
      "typeDescription": "Service Shortfall"
    },
    {
      "description": "Silence Is Golden Issues",
      "name": "SilenceIsGolden",
      "typeDescription": "Service Shortfall"
    },
    {
      "description": "Inclement Weather",
      "name": "Weather",
      "typeDescription": "Theatre Closure"
    },
    {
      "description": "Power Outage",
      "name": "PowerOutage",
      "typeDescription": "Theatre Closure"
    },
    {
      "description": "Unforeseen Maintenance",
      "name": "UnforeseenMaintenance",
      "typeDescription": "Theatre Closure"
    },
    {
      "description": "Water Main Break",
      "name": "WaterMainBreak",
      "typeDescription": "Theatre Closure"
    },
    {
      "description": "Emergency",
      "name": "Emergency",
      "typeDescription": "Theatre Issues"
    },
    {
      "description": "Evacuation",
      "name": "Evacuation",
      "typeDescription": "Theatre Issues"
    },
    {
      "description": "Power Outage",
      "name": "PowerOutage",
      "typeDescription": "Theatre Issues"
    },
    {
      "description": "Projection Issues",
      "name": "ProjectionIssues",
      "typeDescription": "Theatre Issues"
    },
    {
      "description": "Theatre Never Opened",
      "name": "NeverOpened",
      "typeDescription": "Theatre Issues"
    }
  ],
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v1/refund-reasons",
      "templated": false
    }
  }
}