{ "opencollection": "1.0.0", "info": { "name": "Twenty CRM Companies Notes API", "version": "0.40" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Notes", "type": "folder" }, "items": [ { "info": { "name": "List notes", "type": "http" }, "http": { "method": "GET", "url": "https://api.twenty.com/rest/notes", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of records to return per page." }, { "name": "order_by", "value": "", "type": "query", "description": "Field and direction to sort by, e.g. `createdAt[DescNullsLast]`." }, { "name": "filter", "value": "", "type": "query", "description": "Filter expression, e.g. `name[eq]:Acme`." }, { "name": "depth", "value": "", "type": "query", "description": "Relation traversal depth (0, 1, or 2) to embed related records." } ] }, "docs": "List notes" }, { "info": { "name": "Create a note", "type": "http" }, "http": { "method": "POST", "url": "https://api.twenty.com/rest/notes", "body": { "type": "json", "data": "{}" } }, "docs": "Create a note" }, { "info": { "name": "Get a note", "type": "http" }, "http": { "method": "GET", "url": "https://api.twenty.com/rest/notes/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The UUID of the record." } ] }, "docs": "Get a note" }, { "info": { "name": "Update a note", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.twenty.com/rest/notes/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The UUID of the record." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a note" }, { "info": { "name": "Delete a note", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.twenty.com/rest/notes/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The UUID of the record." } ] }, "docs": "Delete a note" } ] } ], "bundled": true }