{ "opencollection": "1.0.0", "info": { "name": "HubSpot Analytics Events Access Tokens Meetings API", "version": "3.0.0" }, "items": [ { "info": { "name": "Meetings", "type": "folder" }, "items": [ { "info": { "name": "Hubspot List Meetings", "type": "http" }, "http": { "method": "GET", "url": "https://api.hubapi.com/crm/v3/objects/meetings", "params": [ { "name": "limit", "value": "10", "type": "query", "description": "The maximum number of results to return per page." }, { "name": "after", "value": "example-value", "type": "query", "description": "The cursor for pagination to get the next page of results." }, { "name": "properties", "value": "example-value", "type": "query", "description": "A comma-separated list of property names to return." }, { "name": "archived", "value": "false", "type": "query", "description": "Whether to return archived meetings." } ] }, "docs": "Returns a page of meeting engagement records. Use the limit and after parameters to paginate through meetings. You can also specify which properties to return using the properties parameter." }, { "info": { "name": "Hubspot Create a Meeting", "type": "http" }, "http": { "method": "POST", "url": "https://api.hubapi.com/crm/v3/objects/meetings", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new meeting engagement record with the provided properties. Common meeting properties include hs_meeting_title, hs_meeting_body, hs_meeting_start_time, hs_meeting_end_time, and hs_meeting_outcome." }, { "info": { "name": "Hubspot Get a Meeting", "type": "http" }, "http": { "method": "GET", "url": "https://api.hubapi.com/crm/v3/objects/meetings/:meetingId", "params": [ { "name": "meetingId", "value": "500123", "type": "path", "description": "The ID of the meeting to retrieve." }, { "name": "properties", "value": "example-value", "type": "query", "description": "A comma-separated list of property names to return." }, { "name": "archived", "value": "false", "type": "query", "description": "Whether to return archived meetings." } ] }, "docs": "Returns a single meeting engagement record by its ID. You can specify which properties to return using the properties parameter." }, { "info": { "name": "Hubspot Update a Meeting", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.hubapi.com/crm/v3/objects/meetings/:meetingId", "params": [ { "name": "meetingId", "value": "500123", "type": "path", "description": "The ID of the meeting to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Performs a partial update of a meeting engagement record. Only the properties included in the request body will be updated." }, { "info": { "name": "Hubspot Archive a Meeting", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.hubapi.com/crm/v3/objects/meetings/:meetingId", "params": [ { "name": "meetingId", "value": "500123", "type": "path", "description": "The ID of the meeting to archive." } ] }, "docs": "Archives (soft deletes) a meeting engagement record by its ID. Archived meetings can be restored using the HubSpot UI or API." }, { "info": { "name": "Hubspot Search Meetings", "type": "http" }, "http": { "method": "POST", "url": "https://api.hubapi.com/crm/v3/objects/meetings/search", "body": { "type": "json", "data": "{}" } }, "docs": "Searches for meeting engagement records using filter groups, sorts, and other query parameters." } ] } ], "bundled": true }