Logo
⌘K

Get Product Set by Id

Retrieve a product set specified by its id.
Parameters

id

string

Required

Retrieve a product set specified by its id.
Returns

The ProductSet matching the supplied id.

GET

/product-sets/get-by-id

curl -G 'https://www.artelo.io/api/open/product-sets/get-by-id?id=116f6ad0-da58-4a2a-8240-0f6dda97ae9f' \
  -H 'Authorization: Bearer your-token'
Response
{
  "createdAt": "2024-10-11T12:38:48.465Z",
  "id": "456f9ad0-da58-4a2a-8240-0f6dda97ae9f",
  "name": "Product Set Name",
  "products": [
    {
      "catalogProductId": "IndividualArtPrint",
      "designs": [
        {
          "height": 400,
          "id": "906f9ad0-da58-dd90-0140-0f6dda97ae9f",
          "image": {
            "previews": {
              "lg": "https://url.com/lg-img.png",
              "sm": "https://url.com/sm-img.png",
              "xs": "https://url.com/xs-img.png"
            },
            "url": "https://example.com/x.png"
          },
          "order": 0,
          "rotation": 30,
          "width": 400,
          "x": 0,
          "y": 0
        }
      ],
      "frameColor": "BlackMetal",
      "frameStyle": "Metal",
      "id": "456f9ad0-da58-dd90-0140-0f6dda97ae9f",
      "includeFramingService": true,
      "includeHangingPins": true,
      "includeMats": true,
      "orientation": "Horizontal",
      "paperStyle": "FineArt",
      "paperType": "ArchivalMatteFineArt",
      "size": "x10x10",
      "unitCost": 10.99
    }
  ],
  "updatedAt": "2024-12-11T12:38:48.465Z"
}