{ "opencollection": "1.0.0", "info": { "name": "Reonic REST Api v3 Activities Notes API", "version": "3.2.0" }, "request": { "auth": { "type": "apikey", "key": "X-Authorization", "value": "{{X-Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Notes", "type": "folder" }, "items": [ { "info": { "name": "List notes", "type": "http" }, "http": { "method": "GET", "url": "{apiBaseUrl}/rest/v3/notes", "headers": [ { "name": "Reonic-Cache-Control", "value": "" } ], "params": [ { "name": "parentType", "value": "", "type": "query", "description": "The type of the parent entity." }, { "name": "parentId", "value": "", "type": "query", "description": "Filter by the ID of the parent the notes are attached to." }, { "name": "createdById", "value": "", "type": "query", "description": "Filter by the ID of the user who created the notes. References [**Users**](#tag/users)" }, { "name": "sort", "value": "", "type": "query", "description": "Sort order. Use field names for ascending (e.g. \"createdAt\"), minus sign for descending (e.g. \"-createdAt\"). Chain with commas (e.g. \"createdAt,editedAt\"). Sortable fields: createdAt, createdById, editedAt. Defaults to -createdAt." }, { "name": "page", "value": "", "type": "query", "description": "Page number, starting from 1. Default: 1." }, { "name": "itemsPerPage", "value": "", "type": "query", "description": "Number of items per page. Default: 50. Max: 200." } ] }, "docs": "List notes for an entity in a paginated format.\n\n**Allowed API keys:** Read-only, Read and Write" }, { "info": { "name": "Create note", "type": "http" }, "http": { "method": "POST", "url": "{apiBaseUrl}/rest/v3/notes/create", "body": { "type": "json", "data": "{}" } }, "docs": "Create a note and attach it to an entity (i.e. contact, task or residentialProject).\n\n**Allowed API keys:** Read and Write, Lead creation only" }, { "info": { "name": "Update note", "type": "http" }, "http": { "method": "POST", "url": "{apiBaseUrl}/rest/v3/notes/:noteId/update", "params": [ { "name": "noteId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Pin or unpin a note.\n\n**Allowed API keys:** Read and Write" } ] } ], "bundled": true }