{ "opencollection": "1.0.0", "info": { "name": "SavvyCal Meetings Current User Events API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Events", "type": "folder" }, "items": [ { "info": { "name": "List events", "type": "http" }, "http": { "method": "GET", "url": "https://api.savvycal.com/v1/events", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number for pagination." }, { "name": "per_page", "value": "", "type": "query", "description": "Number of results per page." } ] }, "docs": "List your events scheduled via SavvyCal." }, { "info": { "name": "Get event", "type": "http" }, "http": { "method": "GET", "url": "https://api.savvycal.com/v1/events/:event_id", "params": [ { "name": "event_id", "value": "", "type": "path", "description": "The unique identifier of the event." } ] }, "docs": "Fetch a single event by its ID." }, { "info": { "name": "Cancel event", "type": "http" }, "http": { "method": "POST", "url": "https://api.savvycal.com/v1/events/:event_id/cancel", "params": [ { "name": "event_id", "value": "", "type": "path", "description": "The unique identifier of the event." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Cancel an event by its ID." }, { "info": { "name": "Create event", "type": "http" }, "http": { "method": "POST", "url": "https://api.savvycal.com/v1/links/:link_id/events", "params": [ { "name": "link_id", "value": "", "type": "path", "description": "The unique identifier of the scheduling link." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new event via a scheduling link. You can only create events that match an available time slot for the underlying scheduling link. Use the List Available Slots endpoint to find suitable times.\n" } ] } ], "bundled": true }