{ "opencollection": "1.0.0", "info": { "name": "Cvent REST APIs — Event Cloud Hooks API", "version": "ea" }, "items": [ { "info": { "name": "Hooks", "type": "folder" }, "items": [ { "info": { "name": "List Contact Hooks", "type": "http" }, "http": { "method": "GET", "url": "https://api-platform.cvent.com/ea/contacts/hooks", "params": [ { "name": "after", "value": "", "type": "query", "description": "Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store." }, { "name": "before", "value": "", "type": "query", "description": "Used to query records that have been added or updated before this time point." }, { "name": "limit", "value": "", "type": "query", "description": "The maximum number of records to return per page." }, { "name": "token", "value": "", "type": "query", "description": "The continuation token returned from a previous class. This must be a valid UUID v4 if provided.\nThis will override any other pageable parameters provided.\n" }, { "name": "filter", "value": "", "type": "query", "description": "A filter query string narrows search results and supports the combination of logical and comparison operators.\nThe filter adheres to the pattern filter='field' comparisonType 'value'.\n\nThere are two comparison types that can be used in filter expressions:\n * equal: eq\n * not equal: ne\n * greater than: gt\n * greater or equal: ge\n * less than: lt\n * less than or equal: le\n\nThe following fields are filterable:\n * id (eq|ne)\n * name (eq|ne)\n * created (eq|ne|lt|le|gt|ge)\n * lastModified (eq|ne|lt|le|gt|ge)\n\nThe following operators are available:\n * and\n * or\n" } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Gets a list of contact hooks configured in your account." }, { "info": { "name": "Create Contact Hook", "type": "http" }, "http": { "method": "POST", "url": "https://api-platform.cvent.com/ea/contacts/hooks", "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Creates a contact hook. Contact hooks have a callback URI pointing to your system where Cvent will request contact information." }, { "info": { "name": "Update Contact Hook", "type": "http" }, "http": { "method": "PUT", "url": "https://api-platform.cvent.com/ea/contacts/hooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique ID of the contact hook." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Update a contact hook's details, including its associated callback URI." }, { "info": { "name": "Delete Contact Hook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api-platform.cvent.com/ea/contacts/hooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique ID of the contact hook." } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Delete a contact hook's details." } ] } ], "bundled": true }