{ "opencollection": "1.0.0", "info": { "name": "Accounts Secure Notes API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api.armor.com/auth/authorize", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Secure Notes", "type": "folder" }, "items": [ { "info": { "name": "Get all secure notes", "type": "http" }, "http": { "method": "GET", "url": "https://accounts.api.secure-dev.services/securenotes/securenotes", "headers": [ { "name": "x-account-context", "value": "4" } ] }, "docs": "Retrieve a list of all secure notes for the account." }, { "info": { "name": "Create a new secure note", "type": "http" }, "http": { "method": "POST", "url": "https://accounts.api.secure-dev.services/securenotes/securenotes", "headers": [ { "name": "x-account-context", "value": "4" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new secure note with encrypted content." }, { "info": { "name": "Get secure note by ID", "type": "http" }, "http": { "method": "GET", "url": "https://accounts.api.secure-dev.services/securenotes/securenotes/:id", "headers": [ { "name": "x-account-context", "value": "4" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the secure note." } ] }, "docs": "Retrieve a specific secure note by its ID. This endpoint does not include the encrypted content." }, { "info": { "name": "Update secure note", "type": "http" }, "http": { "method": "PUT", "url": "https://accounts.api.secure-dev.services/securenotes/securenotes/:id", "headers": [ { "name": "x-account-context", "value": "4" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the secure note." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing secure note's details." }, { "info": { "name": "Delete secure note", "type": "http" }, "http": { "method": "DELETE", "url": "https://accounts.api.secure-dev.services/securenotes/securenotes/:id", "headers": [ { "name": "x-account-context", "value": "4" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the secure note." } ] }, "docs": "Delete a secure note by its ID." }, { "info": { "name": "Reveal secure note content", "type": "http" }, "http": { "method": "GET", "url": "https://accounts.api.secure-dev.services/securenotes/securenotes/:id/reveal", "headers": [ { "name": "x-account-context", "value": "4" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the secure note." } ] }, "docs": "Retrieve a secure note with its encrypted content revealed." } ] } ], "bundled": true }