---
title: "Service Event"
method: POST
path: "ServiceEvent"
tags: ["Webhooks"]
---

# Service Event

`POST ServiceEvent` (webhook)

Sent when a service is created, updated, or deleted. The `data` field matches the response from `GET /company/{company_id}/services/{service_id}`.

## Payload

- object
  - `company_id` integer, required — Location ID where the event occurred.
  - `resource` 'service', required — Resource type.
  - `resource_id` integer, required — ID of the resource that was created, updated, or deleted.
  - `status` 'create' | 'update' | 'delete', required — Type of change that occurred.
  - `data` Service, required — Service data sent in webhook notifications. Matches the output of the service detail API.
    - `id` integer — Service ID.
    - `salon_service_id` integer
    - `title` string
    - `booking_title` string — Title shown in online booking.
    - `category_id` integer
    - `price_min` number
    - `price_max` number
    - `duration` integer — Duration in minutes.
    - `discount` number
    - `comment` string
    - `weight` integer — Sort order.
    - `active` 0 | 1
    - `api_id` string
    - `staff` object[] — Assigned team members.
      - `id` integer
      - `seance_length` integer
    - `image_group` object
    - `prepaid` string
    - `is_multi` boolean
    - `capacity` integer
    - `is_price_managed_only_in_chain` boolean
    - `is_comment_managed_only_in_chain` boolean

## Acknowledgement `200`

Your server should return any 2xx status code to acknowledge receipt.

---

[API](https://skmtc.dev/alteg/apis/developer-tools.md) · [All operations](https://skmtc.dev/alteg/apis/developer-tools/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/alteg/developer-tools/revisions/c89b6494ffd2/schema)
