ResourcesGroups

Remove products from group

This endpoint allows you to remove products from a group.

This endpoint allows you to remove products from a group.

DELETE
/v2/groups/{group}/products/detach

Authorization

bearerAuth
AuthorizationBearer <token>

Provide your SellApp API key as a bearer token.

In: header

Path Parameters

group*integer

The group path parameter.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

resources*array<integer>

Response Body

application/json

curl -X DELETE "https://sell.app/api/v2/groups/0/products/detach" \  -H "Content-Type: application/json" \  -d '{    "resources": [      1    ]  }'
{
  "detached": [
    1
  ]
}