POST
/api/public/v1/appointment-services

Create appointment service

Create a new bookable service for a location.

Request Body

PropertyTypeDescription
locationIdstringOwning location.
namestringService name.
descriptionstringDescription.
durationnumberDuration in minutes (15-480).
pricenumberPrice in cents.
isActivebooleanWhether bookable (default true).
POSTExample request
curl
curl -X POST "https://www.pxb.app/api/public/v1/appointment-services" \
  -H "Authorization: Bearer your_access_token" \
  -H "Content-Type: application/json" \
  -d '{
    "locationId": "loc_abc",
    "name": "Consultation",
    "duration": 30,
    "price": 5000
  }'
200Example response
json
{
  "message": "Appointment service created successfully!",
  "content": {
    "service": {
      "id": "svc_1"
    }
  }
}