1. Client
WellnessLiving Webhooks API
  • Getting Started
  • Appointment
    • Appointment created
    • Appointment updated
  • Business
    • Business updated
  • Class
    • Class created
    • Class updated
  • Client
    • Client created
    • Client updated
  • Location
    • Location created
    • Location updated
  • Purchase
    • Purchase created
    • Purchase refunded
  • Staff
    • Staff created
    • Staff updated
  • Schemas
    • MetaData
    • Gender
    • ImageInfo
    • AppointmentPayload
    • BusinessPayload
    • ClassPayload
    • ClientPhoto
    • ClientPayload
    • LocationAddress
    • LocationLinks
    • LocationPayload
    • MoneySummary
    • PurchaseItem
    • PurchaseCreatedPayload
    • PurchaseRefundedPayload
    • StaffPhoto
    • StaffPayload
  1. Client

Client created

Webhook
POST
client.created
Triggered when a client is created.

Request

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200
Receiver accepted the webhook
This response does not have a body.
🟢201
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://your-api-server.com' \
--header 'x-topic;' \
--header 'x-signature-256;' \
--header 'x-generated-at;' \
--header 'x-sent-at;' \
--header 'x-payload-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "uid": "2976050",
    "s_first_name": "Client Name",
    "s_last_name": "Client Last Name",
    "s_mail": "client@email.com",
    "s_phone": "+12015557898",
    "gender": {
        "id": 2,
        "name": "Female"
    },
    "is_active": "1"
}'
Modified at 2025-12-18 20:08:05
Previous
Class updated
Next
Client updated
Built with