{ "opencollection": "1.0.0", "info": { "name": "HubSpot Analytics Events Access Tokens Deals API", "version": "3.0.0" }, "items": [ { "info": { "name": "Deals", "type": "folder" }, "items": [ { "info": { "name": "Hubspot List Deals", "type": "http" }, "http": { "method": "GET", "url": "https://api.hubapi.com/crm/v3/objects/deals", "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 deals." } ] }, "docs": "Returns a page of deal records. Use the limit and after parameters to paginate through deals. You can also specify which properties to return using the properties parameter." }, { "info": { "name": "Hubspot Create a Deal", "type": "http" }, "http": { "method": "POST", "url": "https://api.hubapi.com/crm/v3/objects/deals", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new deal record with the provided properties. The request body should include a properties object containing the field values for the deal you want to create, including dealname, amount, and pipeline stage." }, { "info": { "name": "Hubspot Get a Deal", "type": "http" }, "http": { "method": "GET", "url": "https://api.hubapi.com/crm/v3/objects/deals/:dealId", "params": [ { "name": "dealId", "value": "500123", "type": "path", "description": "The ID of the deal 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 deals." } ] }, "docs": "Returns a single deal record by its ID. You can specify which properties to return using the properties parameter." }, { "info": { "name": "Hubspot Update a Deal", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.hubapi.com/crm/v3/objects/deals/:dealId", "params": [ { "name": "dealId", "value": "500123", "type": "path", "description": "The ID of the deal to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Performs a partial update of a deal record. Only the properties included in the request body will be updated; other properties will remain unchanged." }, { "info": { "name": "Hubspot Archive a Deal", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.hubapi.com/crm/v3/objects/deals/:dealId", "params": [ { "name": "dealId", "value": "500123", "type": "path", "description": "The ID of the deal to archive." } ] }, "docs": "Archives (soft deletes) a deal record by its ID. Archived deals can be restored using the HubSpot UI or API. This does not permanently delete the deal from HubSpot." }, { "info": { "name": "Hubspot Search Deals", "type": "http" }, "http": { "method": "POST", "url": "https://api.hubapi.com/crm/v3/objects/deals/search", "body": { "type": "json", "data": "{}" } }, "docs": "Searches for deal records using filter groups, sorts, and other query parameters. Supports complex filtering with multiple filter groups and operators for precise record retrieval." } ] } ], "bundled": true }