{ "opencollection": "1.0.0", "info": { "name": "Routable Companies Contacts API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Contacts", "type": "folder" }, "items": [ { "info": { "name": "List contacts", "type": "http" }, "http": { "method": "GET", "url": "https://api.routable.com/v1/contacts", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of records to return per page." }, { "name": "starting_after", "value": "", "type": "query", "description": "Cursor for pagination; the id of the last record on the previous page." } ] }, "docs": "List contacts" }, { "info": { "name": "Create a contact", "type": "http" }, "http": { "method": "POST", "url": "https://api.routable.com/v1/contacts", "body": { "type": "json", "data": "{}" } }, "docs": "Create a contact" }, { "info": { "name": "Retrieve a contact", "type": "http" }, "http": { "method": "GET", "url": "https://api.routable.com/v1/contacts/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ] }, "docs": "Retrieve a contact" }, { "info": { "name": "Update a contact", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.routable.com/v1/contacts/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a contact" } ] } ], "bundled": true }