v1
latestOpenAPI 3.1.1LicenseRef-Proprietary2026-07-1310179223.1 KBProjects
Update Project Billing/Budget
Set or update the project's budget, billable rate, and billing type in a single call. Amounts are in cents (see Concepts).
put/projects/{project_id}/billing
Path parameters
project_idstring required
Example:ev:1234567789001
Project ID
Request body
Example request
{
"rate": {
"userRateOverrides": {
"1304": 10000,
"1543": 5000
}
},
"budget": {
"type": "money",
"budget": 100000,
"period": "general"
}
}Response
OK
Example response
{
"id": "as:1234567890",
"name": "Project Name",
"type": "board",
"users": [
1304,
1543
],
"rate": {
"userRateOverrides": {
"1304": 10000,
"1543": 5000
}
},
"budget": {
"type": "money",
"budget": 100000,
"period": "general"
}
}