{ "opencollection": "1.0.0", "info": { "name": "OpenZeppelin Relayer Health Notifications API", "version": "1.5.0" }, "items": [ { "info": { "name": "Notifications", "type": "folder" }, "items": [ { "info": { "name": "Notification routes implementation", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/notifications", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number for pagination (starts at 1)" }, { "name": "per_page", "value": "", "type": "query", "description": "Number of items per page (default: 10)" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Note: OpenAPI documentation for these endpoints can be found in the `openapi.rs` file\n\nLists all notifications with pagination support." }, { "info": { "name": "Creates a new notification.", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/notifications", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Creates a new notification." }, { "info": { "name": "Retrieves details of a specific notification by ID.", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/notifications/:notification_id", "params": [ { "name": "notification_id", "value": "", "type": "path", "description": "Notification ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves details of a specific notification by ID." }, { "info": { "name": "Updates an existing notification.", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/v1/notifications/:notification_id", "params": [ { "name": "notification_id", "value": "", "type": "path", "description": "Notification ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Updates an existing notification." }, { "info": { "name": "Deletes a notification by ID.", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v1/notifications/:notification_id", "params": [ { "name": "notification_id", "value": "", "type": "path", "description": "Notification ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Deletes a notification by ID." } ] } ], "bundled": true }