{ "opencollection": "1.0.0", "info": { "name": "HubSpot Analytics Events Access Tokens Subscriptions API", "version": "3.0.0" }, "items": [ { "info": { "name": "Subscriptions", "type": "folder" }, "items": [ { "info": { "name": "Hubspot List Subscriptions", "type": "http" }, "http": { "method": "GET", "url": "https://api.hubapi.com/crm/v3/objects/subscriptions", "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 subscriptions." } ] }, "docs": "Returns a page of commerce subscription records. Use the limit and after parameters to paginate through subscriptions. You can also specify which properties to return using the properties parameter." }, { "info": { "name": "Hubspot Create a Subscription", "type": "http" }, "http": { "method": "POST", "url": "https://api.hubapi.com/crm/v3/objects/subscriptions", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new subscription record with the provided properties. Subscription records track recurring revenue relationships with customers." }, { "info": { "name": "Hubspot Get a Subscription", "type": "http" }, "http": { "method": "GET", "url": "https://api.hubapi.com/crm/v3/objects/subscriptions/:subscriptionId", "params": [ { "name": "subscriptionId", "value": "500123", "type": "path", "description": "The ID of the subscription 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 subscriptions." } ] }, "docs": "Returns a single subscription record by its ID. You can specify which properties to return using the properties parameter." }, { "info": { "name": "Hubspot Update a Subscription", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.hubapi.com/crm/v3/objects/subscriptions/:subscriptionId", "params": [ { "name": "subscriptionId", "value": "500123", "type": "path", "description": "The ID of the subscription to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Performs a partial update of a subscription record. Only the properties included in the request body will be updated; other properties will remain unchanged." }, { "info": { "name": "Hubspot Archive a Subscription", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.hubapi.com/crm/v3/objects/subscriptions/:subscriptionId", "params": [ { "name": "subscriptionId", "value": "500123", "type": "path", "description": "The ID of the subscription to archive." } ] }, "docs": "Archives (soft deletes) a subscription record by its ID. Archived subscriptions can be restored using the HubSpot UI or API." }, { "info": { "name": "Hubspot Search Subscriptions", "type": "http" }, "http": { "method": "POST", "url": "https://api.hubapi.com/crm/v3/objects/subscriptions/search", "body": { "type": "json", "data": "{}" } }, "docs": "Searches for subscription records using filter groups, sorts, and other query parameters." } ] } ], "bundled": true }