SW Combine SDK
    Preparing search index...

    Market vendors resource

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Get a specific vendor by UID.

      Returns the Vendor object directly — not wrapped in a Page.

      Parameters

      Returns Promise<Vendor>

      The Vendor entity.

      const vendor = await client.market.vendors.get({ uid: 'vendor-uid' });
      console.log(vendor.name); // access properties directly, not vendor.data
    • List all public vendors (paginated)

      Parameters

      • Optionaloptions: { item_count?: number; pageDelay?: number; start_index?: number }

        Optional pagination parameters

      Returns Promise<Page<Vendor>>

      const vendors = await client.market.vendors.list();
      const moreVendors = await client.market.vendors.list({ start_index: 51, item_count: 50 });