Endpoint to update the retainer for a project.

The end date of the retainer can only be updated via the POST /setDates endpoint. The start date, the retainer period, and the timezone can not be updated. Delete the retainer and create a new one instead. The user needs to have the ProjectMasterData write permission for the project to access this endpoint. <Check title="Required Permissions">Any authenticated user.</Check>

Path parameters

projectIdstringRequiredformat: "uuid"
The id of the project.
retainerIdstringRequiredformat: "uuid"
The id of the retainer.

Headers

AuthorizationstringRequired

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

The form to update the retainer.
timeBudgetintegerOptional
The time budget per retainer period in seconds. The default budget amount for new budgets in this retainer.
timezonestring or nullOptional
The timezone for when new budgets are created.
rollOverUnderspentBudgetbooleanOptional
Whether underspent budgets should be rolled over to the next period.
rollOverOverspentBudgetbooleanOptional
Whether overspent budgets should be rolled over to the next period.
startDatestringOptionalformat: "date-time"
The start of the retainer contract.
endDatestring or nullOptionalformat: "date-time"
The end of the retainer contract until new budgets will be created. Optional.
syncProjectDatesbooleanOptional
Whether the project start and due dates should be synced to the retainer start and end dates.

Response

OK
timeBudgetinteger or null
The time budget per retainer period in seconds. The default budget amount for new budgets in this retainer.
timezonestring or null
The timezone for when new budgets are created.
rollOverUnderspentBudgetboolean or null
Whether underspent budgets should be rolled over to the next period.
rollOverOverspentBudgetboolean or null
Whether overspent budgets should be rolled over to the next period.
startDatestring or nullformat: "date-time"
The start of the retainer contract.
endDatestring or nullformat: "date-time"
The end of the retainer contract until new budgets will be created. Optional.
syncProjectDatesboolean or null
Whether the project start and due dates should be synced to the retainer start and end dates.
idstring or nullformat: "uuid"
The id of the retainer.
retainerPeriodstring or null
The period for new budgets in this retainer. Currently only 'monthly' is supported.
projectIdstring or nullformat: "uuid"
The project this retainer is associated with.
isExternalboolean or null
Whether the retainer belongs to an external project.
retainerBudgetslist of objects or null

The budgets for this retainer. Each budget period (month) gets its own budget.

createdOnstring or nullformat: "date-time"
The date this retainer was created.
createdBystring or nullformat: "uuid"
The id of the user who created this retainer.
updatedOnstring or nullformat: "date-time"
The date this retainer was last modified.
updatedBystring or nullformat: "uuid"
The id of the user who last modified this retainer.