action cpy_post_api_v1_users_me_notifications_read { label: "Mark notifications as read by their id" provider: cpy method: POST path: "/api/v1/users/me/notifications/read" encoding: json input: { type: "object" required: ["ids"] properties: { ids: { type: "array" description: "ids of the notifications to mark as read" items: { type: "integer" } } } } output: { type: "object" additionalProperties: true } }