v1

latestOpenAPI 3.1.02026-07-14460151.1 KB

List designs

Retrieve details regarding your designs. This includes both inventory and on-demand products that can be found on the "My Catalog" tab on your Corporate Merch dashboard.

get/v2/designs

Query parameters

limitstring

Return up to this many results per page. (≤ 50 default 15)

pagestring

Return the data of the specified page

Response

200

Example response

{
  "data": [
    {
      "id": 5,
      "sku": "CM101",
      "name": "Product name",
      "colors": [
        {
          "code": "#000000",
          "name": "Black"
        }
      ],
      "quantity": 15,
      "type": "inventory",
      "weight": "1",
      "unit_price": "20",
      "prices": [
        {
          "amount": "20",
          "min_quantity": 1,
          "max_quantity": 50
        }
      ],
      "dimensions": {
        "length": "1",
        "width": "1",
        "height": "1"
      },
      "created_at": "2022-06-21T17:47:19+00:00",
      "images": [
        {
          "id": 1,
          "src": "https://corporatemerch.com/image1.png",
          "thumbnail": "https://corporatemerch.com/image1-thumb.png"
        }
      ],
      "original_logo": {
        "id": 3,
        "src": "https://corporatemerch.com/image3.png",
        "thumbnail": "https://corporatemerch.com/image3-thumb.png"
      },
      "production_logo": {
        "id": 4,
        "src": "https://corporatemerch.com/image4.png",
        "thumbnail": "https://corporatemerch.com/image4-thumb.png"
      },
      "variants": [
        {
          "id": 1,
          "product_id": 5,
          "sku": "CM101_XS_M",
          "quantity": 5,
          "size": "XS",
          "gender": "M",
          "image": {
            "id": 1,
            "src": "https://corporatemerch.com/image1.png",
            "thumbnail": "https://corporatemerch.com/image1-thumb.png"
          }
        }
      ],
      "estimated_ship_date": "2026-03-02T13:44:07-05:00"
    }
  ],
  "pagination": {
    "path": "https://api.corporatemerch.com/v2/designs",
    "total": 4,
    "limit": 15,
    "current_page": 1,
    "last_page": 1
  }
}
All 46 operations