Skip to main content
DELETE
/
api
/
v1
/
hotel
/
hotels
/
{workspaceId}
/
location-groups
/
{locationGroupId}
Delete Location Group
curl --request DELETE \
  --url https://api.xenia.team/api/v1/hotel/hotels/{workspaceId}/location-groups/{locationGroupId} \
  --header 'x-client-key: <api-key>' \
  --header 'x-client-secret: <api-key>'
{
  "data": {},
  "meta": {}
}

Authorizations

x-client-key
string
header
required
x-client-secret
string
header
required

Path Parameters

workspaceId
string<uuid>
required

UUID of the workspace.

locationGroupId
string<uuid>
required

UUID of the location group to delete.

Response

Location group deleted successfully.

The response is of type any.

I