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.platform.softwareone.com
Content-Type: application/json
Accept: */*
Content-Length: 83

{
  "name": "text",
  "label": "text",
  "description": "text",
  "displayOrder": 1,
  "default": true
}
{
  "id": "text",
  "audit": {
    "created": {
      "at": "2025-07-16T18:07:38.388Z",
      "by": {
        "0": "[",
        "1": "C",
        "2": "i",
        "3": "r",
        "4": "c",
        "5": "u",
        "6": "l",
        "7": "a",
        "8": "r",
        "9": " ",
        "10": "R",
        "11": "e",
        "12": "f",
        "13": "e",
        "14": "r",
        "15": "e",
        "16": "n",
        "17": "c",
        "18": "e",
        "19": "]"
      }
    },
    "updated": {
      "at": "2025-07-16T18:07:38.388Z",
      "by": {
        "0": "[",
        "1": "C",
        "2": "i",
        "3": "r",
        "4": "c",
        "5": "u",
        "6": "l",
        "7": "a",
        "8": "r",
        "9": " ",
        "10": "R",
        "11": "e",
        "12": "f",
        "13": "e",
        "14": "r",
        "15": "e",
        "16": "n",
        "17": "c",
        "18": "e",
        "19": "]"
      }
    }
  },
  "$meta": {
    "omitted": [
      "text"
    ]
  },
  "name": "text",
  "label": "text",
  "description": "text",
  "displayOrder": 1,
  "default": true,
  "parameterCount": 1,
  "product": {
    "id": "text",
    "name": "text",
    "externalIds": {
      "operations": "text"
    },
    "icon": "text",
    "status": "text"
  }
}

Last updated

Was this helpful?