Delete Service Group API
POST /deleteServiceGroup
Description
This API endpoint allows users to delete an existing service group by providing its unique identifier. The deletion will remove the service group and its associated attributes, such as discounts, language settings, and geolocation restrictions.
Request Body
The request utilizes GraphQL to perform the deleteServiceGroup
mutation.
Mutation:
mutation deleteServiceGroup ($id: Int!) {
deleteServiceGroup (id: $id) {
id
name
}
}