Skip to main content
PATCH
/
project-monthly-budget-other-items
/
{id}
Update a project monthly budget other item
curl --request PATCH \
  --url https://www.ruddr.io/api/workspace/project-monthly-budget-other-items/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "fee": 123,
  "description": "<string>",
  "invoiceItemId": "<string>"
}
'
{
  "id": "c8f42e17-a593-4d0b-b6e1-d2a70f8c39e5",
  "fee": 3000,
  "description": "Updated monthly expense allocation",
  "createdAt": "2026-01-20T16:08:44.561Z",
  "project": {
    "id": "e1b73d24-9f06-4a8c-85e2-c0d4f7a18b93",
    "name": "Data Analytics Platform",
    "client": {
      "id": "7f2a8c91-e304-4b5d-a6e1-d9c0f3b72e48",
      "name": "Initech"
    }
  },
  "invoiceItem": {
    "id": "b4e91c27-3f08-4d6a-a5e2-c7d0f8b13a96",
    "name": "Travel Expenses"
  }
}
The monthly budget for a miscellaneous invoice item on a project. Only available for billable projects using a monthly budget and the monthly budget mode is “detailed”.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The project monthly budget other item uuid.

Body

application/json
fee
number

The total amount of the item.

description
string

A description of the item being charged. Maximum 255 characters.

invoiceItemId
string

The ID (uuid) of the invoice item to associate with this budget line.

Response

200

id
string

The unique identifier for the object.

fee
number

The total amount of the item.

description
string

A description of the item being charged.

createdAt
string<date-time>

The timestamp when the object was created.

project
object

The project this item belongs to.

invoiceItem
object

The invoice item associated with this budget line.