Skip to content

Get item by ID

Request

Retrieve detailed information about a specific item.

Security
PartnerApiKey and PartnerOAuth
Path
itemIdinteger, (int64)required

Item ID

accountIdinteger, (int64)required

Account identifier

curl -i -X GET \
  'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/item/{itemId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Item found and returned successfully

Bodyapplication/json
activeboolean

Whether this item is active

Example:true
billingCodestring

Billing code

Example:"36415"
categoryIdinteger, (int64)

Category ID

Example:456
createdAtstring, (date-time)

Creation timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
idinteger, (int64)

Unique item identifier

Example:12345
namestring

Item name

Example:"Blood Draw"
priceobject(Money)

Monetary amount

taxableboolean

Whether this item is taxable

Example:false
typestring

Item type

Enum:"SERVICE""SUPPLY"
Example:"SERVICE"
updatedAtstring, (date-time)

Last update timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
Response
{ "active": true, "billingCode": "36415", "categoryId": 456, "createdAt": "2025-01-15T14:00:00Z", "id": 12345, "name": "Blood Draw", "price": { "amount": 50, "currency": "USD" }, "taxable": false, "type": "SERVICE", "updatedAt": "2025-01-15T14:00:00Z" }