{
  "info": {
    "name": "Eventzilla — mcp.ai",
    "description": "REST API for the Eventzilla MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/eventzilla",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "eventzilla_cancel_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "order"
          ]
        },
        "description": "Tool to cancel an event order by checkout ID and event ID. Use when you need to cancel a customer's order and require a reason for the cancellation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"eventid\": 0,\n  \"comments\": \"\",\n  \"checkout_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eventzilla_check_in_attendee",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/in/attendee",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "in",
            "attendee"
          ]
        },
        "description": "Tool to check in or revert check-in for an attendee using their unique barcode. Use when you need to mark an attendee as present at an event or undo a check-in.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"barcode\": \"\",\n  \"eventcheckin\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eventzilla_confirm_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/confirm/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "confirm",
            "order"
          ]
        },
        "description": "Tool to confirm an event order by checkout ID and event ID. Use when you need to confirm a pending order and optionally send a confirmation email to the buyer.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"eventid\": 0,\n  \"comments\": \"\",\n  \"sendemail\": false,\n  \"checkout_id\": 0,\n  \"eventdateid\": 0,\n  \"payment_status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eventzilla_get_user_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed information of a specific user. Use after listing users to fetch full profile.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eventzilla_list_categories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/categories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "categories"
          ]
        },
        "description": "Tool to retrieve event categories available in Eventzilla. Use when you need to present or choose from available categories before creating or filtering events.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eventzilla_list_event_tickets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/event/tickets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "event",
            "tickets"
          ]
        },
        "description": "Tool to retrieve all ticket categories for a specified event. Returns ticket types with pricing, availability, sales dates, limits, and additional options like partial payment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"eventid\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eventzilla_list_event_transactions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/event/transactions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "event",
            "transactions"
          ]
        },
        "description": "Tool to retrieve all transactions for a specified event. Use when you need to get transaction details including buyer information, amounts, status, and payment methods for an event.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"eventid\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eventzilla_list_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "events"
          ]
        },
        "description": "Tool to retrieve a list of events associated with your account (supports filtering). Use when you need to list or filter events for your organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"status\": \"\",\n  \"category\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eventzilla_list_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "users"
          ]
        },
        "description": "Tool to retrieve a list of users associated with your account. Use when you need to fetch and paginate through users.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}