DELETE
/api/public/v1/appointment-services/{serviceId}

Delete appointment service

Delete a service. Existing appointments referencing it are not removed.

Path Parameters

NameTypeRequiredDescription
serviceIdstring
Required
Service ID.
DELETEExample request
curl
curl -X DELETE "https://www.pxb.app/api/public/v1/appointment-services/{serviceId}" \
  -H "Authorization: Bearer your_access_token"
200Example response
json
{
  "message": "Appointment service deleted successfully.",
  "content": {}
}