{ "opencollection": "1.0.0", "info": { "name": "Nimble CRM Contacts API", "version": "v1" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://app.nimble.com/oauth/authorize", "accessTokenUrl": "https://app.nimble.com/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Contacts", "type": "folder" }, "items": [ { "info": { "name": "List contacts", "type": "http" }, "http": { "method": "GET", "url": "https://app.nimble.com/api/v1/contacts", "params": [ { "name": "query", "value": "", "type": "query" }, { "name": "page", "value": "", "type": "query" }, { "name": "per_page", "value": "", "type": "query" } ] }, "docs": "List contacts" }, { "info": { "name": "Delete multiple contacts by query", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.nimble.com/api/v1/contacts" }, "docs": "Delete multiple contacts by query" }, { "info": { "name": "List contact IDs only", "type": "http" }, "http": { "method": "GET", "url": "https://app.nimble.com/api/v1/contacts/ids" }, "docs": "List contact IDs only" }, { "info": { "name": "Retrieve specific contacts by IDs", "type": "http" }, "http": { "method": "GET", "url": "https://app.nimble.com/api/v1/contact", "params": [ { "name": "ids", "value": "", "type": "query" } ] }, "docs": "Retrieve specific contacts by IDs" }, { "info": { "name": "Create a new contact", "type": "http" }, "http": { "method": "POST", "url": "https://app.nimble.com/api/v1/contact" }, "docs": "Create a new contact" }, { "info": { "name": "Get an individual contact", "type": "http" }, "http": { "method": "GET", "url": "https://app.nimble.com/api/v1/contact/:contact_id", "params": [ { "name": "contact_id", "value": "", "type": "path" } ] }, "docs": "Get an individual contact" }, { "info": { "name": "Update a contact", "type": "http" }, "http": { "method": "PUT", "url": "https://app.nimble.com/api/v1/contact/:contact_id", "params": [ { "name": "contact_id", "value": "", "type": "path" } ] }, "docs": "Update a contact" }, { "info": { "name": "Delete a contact", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.nimble.com/api/v1/contact/:contact_id", "params": [ { "name": "contact_id", "value": "", "type": "path" } ] }, "docs": "Delete a contact" } ] } ], "bundled": true }