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.
- 1. Authenticate - Get your API token via Sanctum or API keys
- 2. Explore the API - Browse endpoints with interactive documentation
- 3. Subscribe to Events - Set up real-time updates via WebSocket
- 4. Configure Webhooks - Receive notifications when data changes
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
}'