For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Getting Started
    • Introduction
    • Getting Started
    • Tia — Operations Assistant
    • Architecture
    • Security Architecture
  • Onboarding & Plans
    • Onboarding Overview
    • Plans & Subscriptions
    • Tia Credits
  • Tenancy & Governance
    • Roles & Members
    • Audit Log
    • Notifications
    • Economic Operators
  • Authoring Studios
    • Content Studio
    • Theme Studio
    • Advanced Studio (Track B)
  • Product Module
    • Products
    • Custom Fields
    • Global Search
    • Identifiers
    • Product Import
    • Bulk Editing
    • Bulk Updates
    • Resolver & GS1 Digital Link
    • GS1 Digital Link Contract
  • Localisations
    • Overview
    • Market Packs
    • Multilingual Content
  • Domains & Custom Hostnames
    • Domain Architecture
    • Resolver Domain Flow
    • Custom Hostname Setup
    • DNS Setup Guide
    • Resolver & Passport Rendering
    • Custom Hostname Lifecycle
    • Troubleshooting
  • Passports
    • Overview
    • Passport Operations
    • Lifecycle States
    • Controlled Update & Break-Glass
    • Content & Templates
    • Themes & Presentation
    • Consumer Experience
    • Publication Lifecycle
    • Brand Setup & Readiness
    • Drafts
  • Passport Intelligence
    • Passport Intelligence
    • Intelligence Overview
    • Scan Visibility
    • Trust Signals
    • Engagement Insights
    • Investigation Timelines
    • Data & Privacy
    • Roadmap
  • Minting
    • Overview
    • Lifecycle
    • Architecture
    • Limits & Performance
    • Token Preview
    • Exports & Print Jobs
    • Carrier Output Profiles
    • Bring-Your-Own Serials
    • Security
    • FAQ
  • API Reference
    • API Credentials Guide
    • API: Credentials
    • API: Products
    • API: Identifiers
    • API: Import
    • API: Batches
    • API: Attachments
    • API: Bulk Updates
    • API: Minting
    • API: Resolver
    • API: Search
        • GETList products
        • POSTCreate product
API ReferenceOpenAPIProducts

List products

GET
https://api.tieback.io/v1/products
GET
/v1/products
$curl https://api.tieback.io/v1/products \
> -H "x-workspace-id: x-workspace-id" \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
200Retrieved
1{
2 "ok": true,
3 "data": [
4 {
5 "id": "a3f1c9d2-4b7e-4f8a-9c3d-2e5f7b8a1c9d",
6 "name": "Eco-Friendly Water Bottle",
7 "sku": "ECO-WB-001",
8 "description": "Reusable stainless steel water bottle with bamboo lid",
9 "category": "Outdoor Gear",
10 "price": 24.99,
11 "currency": "USD",
12 "available": true,
13 "createdAt": "2024-05-10T09:15:00Z",
14 "updatedAt": "2024-06-01T12:00:00Z"
15 }
16 ],
17 "meta": {
18 "page": 1,
19 "pageSize": 10,
20 "totalPages": 5,
21 "totalItems": 45
22 }
23}
Returns a paginated list of products for the workspace.
Was this page helpful?
Previous

Create product

Next
Built with

Authentication

AuthorizationBearer
User session token from tieback authentication
OR
x-api-keystring

Machine-to-machine API key (scoped permissions)

Headers

x-workspace-idstringRequiredformat: "uuid"

Target workspace/brand ID

x-request-idstringOptionalformat: "uuid"

Client-provided correlation ID (auto-generated if missing)

Response

OK
okboolean
datalist of objects
metaobject