{ "opencollection": "1.0.0", "info": { "name": "Certify API Layer Monitoring Workflow Note API", "version": "1.0.0" }, "items": [ { "info": { "name": "MonitoringWorkflowNote", "type": "folder" }, "items": [ { "info": { "name": "Get notes for a monitoring workflow", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/monitoring-workflows/:workflowId/notes", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "workflowId", "value": "", "type": "path", "description": "ID of the monitoring workflow" }, { "name": "endAtId", "value": "", "type": "query", "description": "End at this note ID" }, { "name": "filter", "value": "", "type": "query", "description": "Optional filter for notes" }, { "name": "order", "value": "", "type": "query", "description": "Sort order as JSON (e.g., '{\"orderBy\":\"createdAt\",\"orderByDirection\":\"DESC\"}'). If not provided, defaults to sorting by createdAt DESC (newest first)." }, { "name": "page", "value": "", "type": "query", "description": "Page number (1-based)" }, { "name": "size", "value": "", "type": "query", "description": "Page size" }, { "name": "startAfterId", "value": "", "type": "query", "description": "Start after this note ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves a paginated list of notes for the specified monitoring workflow" }, { "info": { "name": "Create a note for a monitoring workflow", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:9000/monitoring-workflows/:workflowId/notes", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "workflowId", "value": "", "type": "path", "description": "ID of the monitoring workflow" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Creates a new note for the specified monitoring workflow" }, { "info": { "name": "Get a note by ID", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/monitoring-workflows/:workflowId/notes/:noteId", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "noteId", "value": "", "type": "path", "description": "ID of the note" }, { "name": "workflowId", "value": "", "type": "path", "description": "ID of the monitoring workflow" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves a specific note by its ID for the specified monitoring workflow" }, { "info": { "name": "Update a note", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:9000/monitoring-workflows/:workflowId/notes/:noteId", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "noteId", "value": "", "type": "path", "description": "ID of the note" }, { "name": "workflowId", "value": "", "type": "path", "description": "ID of the monitoring workflow" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Updates an existing note for the specified monitoring workflow" }, { "info": { "name": "Delete a note", "type": "http" }, "http": { "method": "DELETE", "url": "http://localhost:9000/monitoring-workflows/:workflowId/notes/:noteId", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "noteId", "value": "", "type": "path", "description": "ID of the note" }, { "name": "workflowId", "value": "", "type": "path", "description": "ID of the monitoring workflow" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Deletes an existing note for the specified monitoring workflow" } ] } ], "bundled": true }