action exavault_delete_notification_by_id { label: "Delete a notification" description: "Deletes a notification. Note that deleting a notification _only_ deletes the notification – it does not delete any underlying files or folders.\n\n**Notes:**\n\n- You need to have the [notifications permission](/docs/account/04-users/00-introduction#managing-user-roles-and-permissions) to update a notification.\n- You can only delete notifications owned by your user account." provider: exavault method: DELETE path: "/notifications/{id}" encoding: json input: { type: "object" properties: { "ev-access-token": { type: "string" } "ev-api-key": { type: "string" } id: { type: "integer" format: "int32" } } required: ["ev-access-token", "ev-api-key", "id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "string" } } responseStatus: { type: "integer" description: "Http status code of the response. " } } } }