get_my_inventory
Retrieve your personal inventory items with filters by status, product, or project. Search and paginate to manage your owned, wanted, or for-sale items.
Instructions
List the caller's personal inventory items. Requires an API key.
Use when the user asks "what do I own?", "what's on my wishlist?",
"what am I selling?". Pass status to filter; default returns all.
Args:
api_key: Partle API key, prefix pk_. Generate at
https://partle.rubenayla.xyz/account.
status: Lifecycle filter. One of: owned, wanted,
for_sale, sold, discarded. Omit for all.
product_id: Filter rows linked to a specific Partle product.
project: Exact-match filter on project tag.
q: Substring search on name + notes.
limit: Page size 1–200, default 50.
offset: Pagination offset.
Returns:
{"items": [...], "count": int} — each item carries id,
status, name (or linked product), quantity, prices, etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | Yes | ||
| status | No | ||
| product_id | No | ||
| project | No | ||
| q | No | ||
| limit | No | ||
| offset | No |