{ "opencollection": "1.0.0", "info": { "name": "Cvent REST Attendees Contacts API", "version": "v2" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Contacts", "type": "folder" }, "items": [ { "info": { "name": "List contacts", "type": "http" }, "http": { "method": "GET", "url": "https://api-platform.cvent.com/ea/contacts", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "token", "value": "", "type": "query", "description": "Continuation token for paged results." } ] }, "docs": "List contacts" }, { "info": { "name": "Create contact", "type": "http" }, "http": { "method": "POST", "url": "https://api-platform.cvent.com/ea/contacts", "body": { "type": "json", "data": "{}" } }, "docs": "Create contact" }, { "info": { "name": "Get contact", "type": "http" }, "http": { "method": "GET", "url": "https://api-platform.cvent.com/ea/contacts/:contactId", "params": [ { "name": "contactId", "value": "", "type": "path" } ] }, "docs": "Get contact" }, { "info": { "name": "Update contact", "type": "http" }, "http": { "method": "PUT", "url": "https://api-platform.cvent.com/ea/contacts/:contactId", "params": [ { "name": "contactId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update contact" }, { "info": { "name": "Delete contact", "type": "http" }, "http": { "method": "DELETE", "url": "https://api-platform.cvent.com/ea/contacts/:contactId", "params": [ { "name": "contactId", "value": "", "type": "path" } ] }, "docs": "Delete contact" } ] } ], "bundled": true }