Skip to main content
GET
/
customGroups
/
{id}
Retrieve a single custom group
curl --request GET \
  --url https://mm-api.merchantspring.io/customGroups/{id} \
  --header 'x-api-key: <api-key>'
{
  "group": {
    "groupId": 123,
    "groupName": "<string>",
    "products": [
      {
        "sellerSku": "<string>"
      }
    ],
    "brands": [
      "<string>"
    ]
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Group ID

Query Parameters

channelId
string
required

Channel ID

merchantId
string
required

Merchant ID

Response

Successful operation

A single custom group with its associated products and brands

group
object