---
title: "Creates a \"Call Me Back\" request."
method: POST
path: "/v1/reservation/callmeback"
tags: ["Reservations"]
---

# Creates a "Call Me Back" request.

`POST /v1/reservation/callmeback`

Creates a new CallMeBack Request. This creates an enquiry and sends an email to the property owner with a scheduled time to call the client back.

## Request body

- LodgifyApiPublicReservationsModelsV1CreateCallMeDto — Represents the data required to create a "Call Me Back" request.
  - `date` string — The scheduled date for the call-back appointment in yyyy-MM-dd format.
  - `time_zone_info_id` string, nullable — The IANA time zone identifier (e.g., "America/New_York") for the appointment time.
  - `time` integer — The hour of the appointment, expressed as an integer from 0 to 23.
  - `duration` number, double — The duration of the appointment in hours. Default is 2.
  - `notes` string, nullable — Any additional notes or context for the call-back request.
  - `source_text` string, nullable — The textual content or description of the enquiry source.
  - `source_address` string, nullable — The email address of the sender if the enquiry originated from an email.
  - `arrival` string, date-time, nullable — The arrival date in yyyy-MM-dd format. Optional
  - `departure` string, date-time, nullable — The departure date in yyyy-MM-dd format. Optional
  - `guest_breakdown` LodgifyApiPublicReservationsModelsV12GuestBreakdownDto, required — The breakdown of guests for the booking or enquiry
    - `adults` integer — The number of adults
    - `children` integer — The number of children
    - `infants` integer — The number of infants
    - `pets` integer — The number of pets
  - `people` integer, nullable — Deprecated. Use GuestBreakdown.Adults instead.
  - `property_id` integer, nullable — The property identifier. Optional
  - `room_type_id` integer, nullable — The room type identifier. Optional
  - `guest` LodgifyApiPublicReservationsModelsV1CreateBookingGuestDto — The object used to create the Guest making the Booking
    - `guest_name` LodgifyApiPublicReservationsModelsV1GuestNameDto, required — Represents the name details of a guest.
      - `first_name` string, nullable — The first name of the guest.
      - `last_name` string, nullable — The last name or surname of the guest.
      - `full_name` string, nullable — The full name of the guest, combining first and last names.
    - `name` string, nullable
    - `external_id` string, nullable — The external identifier of the guest in channels like Airbnb
    - `email` string, nullable — The email address of the guest
    - `phone` string, nullable — The phone number of the guest
    - `locale` string, nullable — The locale of the guest
    - `street_address1` string, nullable — The first line of the guest's street address
    - `street_address2` string, nullable — The second line of the guest's street address
    - `city` string, nullable — The city of the guest
    - `country_code` string, nullable — The country code of the guest
    - `postal_code` string, nullable — The postal code of the guest
    - `state` string, nullable — The state or province of the guest
  - `messages` LodgifyApiPublicReservationsModelsV1CreateBookingMessageDto[], nullable — The list of messages attached to the enquiry
    - `subject` string, nullable — The subject of the message
    - `message` string, nullable — The content of the message
    - `type` 'Owner' | 'Comment' | 'Renter'
    - `send_notification` boolean — Indicates whether a notification should be sent to the guest when the message type is Owner. If the booking source is an external channel, the message is pushed. The default value is false
  - `status` string, nullable — The status of the enquiry. Defaults to Open
  - `has_privacy_consent` boolean, nullable — Indicates if the guest has given privacy consent
  - `ip_created` string, nullable — The IP address from where the booking is created. Optional. If not provided, the IP address of the API caller will be used
  - `origin` string, nullable — The origin of the enquiry. Optional.
  - `thread_id` string, uuid, nullable — Optional. Thread Id to link this enquiry to a messaging thread

## Response `201`

Created

- integer

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/lodgify/apis/lodgify-public-api-v1.md) · [All operations](https://skmtc.net/lodgify/apis/lodgify-public-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lodgify/lodgify-public-api-v1/versions/ddf40757d411/schema)
