Skip to main content
GET
/
invoice-items
/
{id}
Get an invoice item
curl --request GET \
  --url https://www.ruddr.io/api/workspace/invoice-items/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "4b9c2e71-d385-4f0a-a6e1-b8d7f2c93a15",
  "name": "Software Licensing",
  "isActive": true,
  "typeId": "income",
  "readOnly": true,
  "createdAt": "2026-01-08T10:33:17.592Z"
}
A charge category assigned to invoice line items, such as “Service” or “Expense”. Every line item on an invoice must have an invoice item.

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 invoice item uuid.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the invoice item.

isActive
boolean

Whether the invoice item is active.

typeId
enum<string>

The type of the invoice item.

Available options:
income,
expense
readOnly
boolean

Whether the invoice item is read-only. System-created invoice items cannot be modified or deleted.

createdAt
string<date-time>

The timestamp when the object was created.