Skip to main content
GET
/
v1
/
public
/
items
/
{item_id}
Get item by ID
curl --request GET \
  --url https://api.poelis.com/v1/public/items/{item_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "readable_id": "<string>",
  "product_id": "<string>",
  "name": "<string>",
  "owner": "<string>",
  "position": 123,
  "has_changes": true,
  "deleted": true,
  "parent_item_id": "<string>",
  "draft_item_id": "<string>"
}

Authorizations

Authorization
string
header
required

Enter your API key. Example: Bearer poelis_api_...

Path Parameters

item_id
string
required

Response

Complete item details including metadata and relationships

Public representation of an item.

id
string
required
readable_id
string
required

Human-readable item ID

product_id
string
required

Product this item belongs to

name
string
required

Item name

owner
string
required

Item owner

position
number
required

Item position within its parent

has_changes
boolean
required

Whether the item has draft changes

deleted
boolean
required

Whether the item is deleted

parent_item_id
string | null

Parent item ID for hierarchical structure

draft_item_id
string | null

Draft item ID if this is a versioned item