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.
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
]
}Add products to group POST
This endpoint allows you to add products to an existing group. See the code examples for how to add products to an existing group with the SellApp API.
List all products within group GET
This endpoint allows you to retrieve a paginated list of all the products within your group. By default, a maximum of fifteen products are shown per page.