{ "opencollection": "1.0.0", "info": { "name": "Smokeball Activity Codes Memos API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Memos", "type": "folder" }, "items": [ { "info": { "name": "Get memos on a matter", "type": "http" }, "http": { "method": "GET", "url": "https://api.smokeball.com/matters/:matterId/memos", "params": [ { "name": "matterId", "value": "", "type": "path" }, { "name": "Offset", "value": "", "type": "query" }, { "name": "Limit", "value": "", "type": "query" } ] }, "docs": "Returns a list of memos on the specified matter." }, { "info": { "name": "Create a memo on a matter", "type": "http" }, "http": { "method": "POST", "url": "https://api.smokeball.com/matters/:matterId/memos", "params": [ { "name": "matterId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a memo on the specified matter." }, { "info": { "name": "Get a memo", "type": "http" }, "http": { "method": "GET", "url": "https://api.smokeball.com/matters/:matterId/memos/:id", "params": [ { "name": "matterId", "value": "", "type": "path" }, { "name": "id", "value": "", "type": "path" } ] }, "docs": "Retrieves a specified memo." }, { "info": { "name": "Update a memo", "type": "http" }, "http": { "method": "PUT", "url": "https://api.smokeball.com/matters/:matterId/memos/:id", "params": [ { "name": "matterId", "value": "", "type": "path" }, { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a specified memo." }, { "info": { "name": "Delete a memo", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.smokeball.com/matters/:matterId/memos/:id", "params": [ { "name": "matterId", "value": "", "type": "path" }, { "name": "id", "value": "", "type": "path" } ] }, "docs": "Deletes a specified memo." } ] } ], "bundled": true }