{ "opencollection": "1.0.0", "info": { "name": "Wispr Backend Analytics Dictionary API", "version": "0.5.2" }, "items": [ { "info": { "name": "Dictionary", "type": "folder" }, "items": [ { "info": { "name": "Get Personal Dictionary", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/dictionary/personal", "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Get a user's personal dictionary." }, { "info": { "name": "Update Personal Dictionary", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/dictionary/personal", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Add a word to a user's personal dictionary." }, { "info": { "name": "Get Team Dictionary", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/dictionary/team", "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Get a user's team's dictionary." }, { "info": { "name": "Create Team Dictionary Item", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/dictionary/team", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Create a team dictionary item." }, { "info": { "name": "Bulk Create Team Dictionary Items", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/dictionary/team/bulk", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Bulk create team dictionary items with upsert semantics." }, { "info": { "name": "Update Team Dictionary Item", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/dictionary/team/update", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Update a team dictionary item." }, { "info": { "name": "Delete Team Dictionary Item", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v1/dictionary/team/:word_id", "params": [ { "name": "word_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Delete a team dictionary item." } ] } ], "bundled": true }