openapi: 3.0.3 info: title: Dataverse Access Notifications API description: Open source research data repository software. version: '6.6' servers: - url: https://dataverse.no/api description: DataverseNO national research-data repository (hosts the NTNU dataverse) tags: - name: Notifications paths: /notifications/all: get: operationId: Notifications_getAllNotificationsForUser responses: '200': description: OK tags: - Notifications /notifications/mutedEmails: get: operationId: Notifications_getMutedEmailsForUser responses: '200': description: OK tags: - Notifications /notifications/mutedEmails/{typeName}: put: operationId: Notifications_muteEmailsForUser parameters: - name: typeName in: path required: true schema: type: string responses: '200': description: OK tags: - Notifications delete: operationId: Notifications_unmuteEmailsForUser parameters: - name: typeName in: path required: true schema: type: string responses: '200': description: OK tags: - Notifications /notifications/mutedNotifications: get: operationId: Notifications_getMutedNotificationsForUser responses: '200': description: OK tags: - Notifications /notifications/mutedNotifications/{typeName}: put: operationId: Notifications_muteNotificationsForUser parameters: - name: typeName in: path required: true schema: type: string responses: '200': description: OK tags: - Notifications delete: operationId: Notifications_unmuteNotificationsForUser parameters: - name: typeName in: path required: true schema: type: string responses: '200': description: OK tags: - Notifications /notifications/{id}: delete: operationId: Notifications_deleteNotificationForUser parameters: - name: id in: path required: true schema: format: int64 type: integer responses: '200': description: OK tags: - Notifications