Skip to main content
GET
/
project-monthly-budget-service-items
/
{id}
Get a project monthly budget service item
curl --request GET \
  --url https://www.ruddr.io/api/workspace/project-monthly-budget-service-items/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "a3e72d18-5b94-4f6c-b1e7-c0d38f9a25b4",
  "fee": 3500,
  "description": "Monthly managed services retainer",
  "createdAt": "2026-06-04T16:40:12.508Z",
  "project": {
    "id": "d4f81c36-7b29-4e5a-a2d8-c3e7f09b61a4",
    "name": "Infrastructure Modernization",
    "client": {
      "id": "e9a52d47-1c83-4b6f-b7e3-d0f29a8c74b2",
      "name": "Sterling Cooper"
    }
  },
  "invoiceItem": {
    "id": "f1c74e28-9b03-4d5a-86e2-a3d7f0c52b19",
    "name": "Managed Services"
  }
}
The monthly budget for an additional service 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 service item uuid.

Response

200

id
string

The unique identifier for the object.

fee
number

The total amount of the item.

description
string | null

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.