Create Parameter Group

Creates a new parameter group for a given product in the catalog.

post
Path parameters
productIdstringRequired
Body
namestringOptional
labelstringOptional
descriptionstring | nullableOptional
displayOrderinteger · int32Optional
defaultbooleanOptional
Responses
201

Created

application/json
post
POST /public/v1/catalog/products/{productId}/parameter-groups HTTP/1.1
Host: api.s1.today
Content-Type: application/json
Accept: */*
Content-Length: 83

{
  "name": "text",
  "label": "text",
  "description": "text",
  "displayOrder": 1,
  "default": true
}
{
  "id": "text",
  "audit": {
    "created": {
      "at": "2025-08-09T14:59:16.188Z",
      "by": "[Circular Reference]"
    },
    "updated": {
      "at": "2025-08-09T14:59:16.188Z",
      "by": "[Circular Reference]"
    }
  },
  "$meta": {
    "omitted": [
      "text"
    ]
  },
  "name": "text",
  "label": "text",
  "description": "text",
  "displayOrder": 1,
  "default": true,
  "parameterCount": 1,
  "product": {
    "id": "text",
    "name": "text",
    "externalIds": {
      "operations": "text",
      "defaultErpItem": "text"
    },
    "icon": "text",
    "status": "text"
  }
}

Last updated

Was this helpful?