{ "opencollection": "1.0.0", "info": { "name": "Quaderno Authentication Contacts API", "version": "1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Contacts", "type": "folder" }, "items": [ { "info": { "name": "List contacts", "type": "http" }, "http": { "method": "GET", "url": "https://{account}.quadernoapp.com/api/contacts.json", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number for paginated results (25 records per page)." }, { "name": "q", "value": "", "type": "query", "description": "Full-text search across contact fields." } ] }, "docs": "Lists contacts (customers and vendors), with optional filtering and pagination." }, { "info": { "name": "Create a contact", "type": "http" }, "http": { "method": "POST", "url": "https://{account}.quadernoapp.com/api/contacts.json", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new contact." }, { "info": { "name": "Retrieve a contact", "type": "http" }, "http": { "method": "GET", "url": "https://{account}.quadernoapp.com/api/contacts/:id.json", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique ID of the resource." } ] }, "docs": "Retrieve a contact" }, { "info": { "name": "Update a contact", "type": "http" }, "http": { "method": "PUT", "url": "https://{account}.quadernoapp.com/api/contacts/:id.json", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique ID of the resource." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a contact" }, { "info": { "name": "Delete a contact", "type": "http" }, "http": { "method": "DELETE", "url": "https://{account}.quadernoapp.com/api/contacts/:id.json", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique ID of the resource." } ] }, "docs": "Delete a contact" } ] } ], "bundled": true }