{ "opencollection": "1.0.0", "info": { "name": "Nationgraph Accounts Notes API", "version": "0.2.36" }, "items": [ { "info": { "name": "Notes", "type": "folder" }, "items": [ { "info": { "name": "Get Notes By Institution", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v3/workspaces/:workspace_id/institution/:institution_id/notes", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "institution_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get all notes attributed to an institution." }, { "info": { "name": "Insert Note", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v3/workspaces/:workspace_id/institution/:institution_id/notes", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "institution_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Upsert a note for an institution.\nThis endpoint first ensures a 'note' custom column exists for the workspace." }, { "info": { "name": "Update Note", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/v3/notes", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update an existing note." }, { "info": { "name": "Delete Note", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v3/notes/:note_id", "params": [ { "name": "note_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete a note by id." } ] } ], "bundled": true }