{ "opencollection": "1.0.0", "info": { "name": "Keap REST Campaigns Contacts API", "version": "2.70.0" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://accounts.infusionsoft.com/app/oauth/authorize", "accessTokenUrl": "https://api.infusionsoft.com/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.infusionsoft.com/crm/rest/v2/contacts", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "page_token", "value": "", "type": "query" } ] }, "docs": "List contacts" }, { "info": { "name": "Create a contact", "type": "http" }, "http": { "method": "POST", "url": "https://api.infusionsoft.com/crm/rest/v2/contacts", "body": { "type": "json", "data": "{}" } }, "docs": "Create a contact" }, { "info": { "name": "Get a contact by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.infusionsoft.com/crm/rest/v2/contacts/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Get a contact by ID" }, { "info": { "name": "Patch a contact", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.infusionsoft.com/crm/rest/v2/contacts/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Patch a contact" }, { "info": { "name": "Delete a contact", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.infusionsoft.com/crm/rest/v2/contacts/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a contact" } ] } ], "bundled": true }