Content
View differences
Updated by Kabiru Mwenja about 1 year ago
**As** a client of OpenProject API
**I want to** be able to CRUD work package Allow setting reminders for the work packages via API user V3.
**Acceptance criteria**
* User with "View WorkPackages" permission is able [ ] **API to create,read,update,delete their own set, update and remove reminders
* User is only able to create one active reminder at a time
* It is NOT possible to manage own reminders if part of the View WorkPackages" permissions is missing
**Technical notes**
POST /api/v3/work\_packages/:work\_package\_id/reminders - Create a new reminder
PATCH /api/v3/work\_packages/:work\_package\_id/reminders - Update existing, active reminder
DELETE /api/v3/work\_packages/:work\_package\_id/reminders - Delete existing, active reminder
```json API v3**
{
"remindAt": "2025-06-02T06:00:00Z",
"note": "Remind meeeee!!!!!"
}
```
**Permissions and visibility considerations**
* Visible to users with "View WorkPackages" permissions [ ] **The API spec got extended**
**I want to** be able to CRUD work package
**Acceptance criteria**
* User with "View WorkPackages" permission is able
* User is only able to create one active reminder at a time
* It is NOT possible to manage own reminders if
**Technical notes**
POST /api/v3/work\_packages/:work\_package\_id/reminders - Create a new reminder
PATCH /api/v3/work\_packages/:work\_package\_id/reminders - Update existing, active reminder
DELETE /api/v3/work\_packages/:work\_package\_id/reminders - Delete existing, active reminder
```json
{
"remindAt": "2025-06-02T06:00:00Z",
"note": "Remind meeeee!!!!!"
}
```
**Permissions and visibility considerations**
* Visible to users with "View WorkPackages" permissions