Skip to main content

GxP Developer Documentation

Build powerful event experiences with the Gramercy Experience Portal API

Everything you need to integrate with GxP

Quick Start

Get up and running with the GxP API in minutes. Our RESTful API uses standard HTTP methods and returns JSON responses.

Example: Create an Attendee
curl -X POST "https://api.gramercy.cloud/api/v1/attendees" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "first_name": "John",
    "last_name": "Doe",
    "email": "john.doe@example.com",
    "attendee_type_id": 1
  }'

Guides & Resources