Skip to main content
POST
/
bookings
/
request
Request a booking
curl --request POST \
  --url https://channels-service-alpha.fourvenues.com/bookings/request \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "event_id": "5f8d0f8b9d2b3b0017b6d8a0",
  "zone_slug": "1736413718721",
  "normalized_zone_name": "superior-vip",
  "rate_slug": "rate-slug",
  "table_id": "17123134123",
  "external_channel_id": "AVTN2K",
  "observations_client": "Please give me a good table.",
  "marketing_consent": true,
  "discount_code": "DISCOUNT20",
  "info": {
    "full_name": "John Doe",
    "email": "john.doe@example.com",
    "phone": "+34666666666",
    "birthdate": "1995-04-26",
    "quantity": 5,
    "billing": {
      "customer_type": "individual",
      "customer_name": "John Doe",
      "document_type": "dni",
      "document_number": "12345678Z",
      "address": "123 Main St",
      "city": "Barcelona",
      "postal_code": "08001",
      "country": "ES"
    }
  }
}
'
{
  "data": {
    "_id": "5f8e1b9b9d9e4b0017b3b3a0",
    "organization_id": "5f8e1b9b9d9e4b0017b3b3a0",
    "channel_id": "5f8e1b9b9d9e4b0017b3b3a0",
    "referral_id": "5f8e1b9b9d9e4b0017b3b3a0",
    "status": "accepted",
    "quantity": 10,
    "full_name": "John Doe",
    "email": "john.doe@example.com",
    "phone": "1234567890",
    "deposit": 100,
    "fee_type": "percentage",
    "fee_quantity": 7,
    "qr_code": "ABCDE12345",
    "activation_code": "ABCDEFGH12345678",
    "observations_referral": "This is a referral",
    "observations_client": "Please give me a good table",
    "payment_id": "pay_1234567890",
    "marketing_consent": true,
    "billing_info": {
      "customer_type": "individual",
      "customer_name": "John Doe",
      "document_type": "dni",
      "document_number": "12345678Z",
      "address": "123 Main St",
      "city": "Barcelona",
      "postal_code": "08001",
      "country": "ES"
    }
  },
  "success": true
}

Authorizations

X-Api-Key
string
header
required

Body

application/json
event_id
string

Event ID

Example:

"5f8d0f8b9d2b3b0017b6d8a0"

zone_slug
string

Zone slug

Example:

"1736413718721"

normalized_zone_name
string

Normalized name of the zone

Example:

"superior-vip"

rate_slug
string

Rate slug

Example:

"rate-slug"

table_id
string

Table ID. Only allowed if the zone has enabled the table selection option for customers.

Example:

"17123134123"

external_channel_id
string

External channel ID

Example:

"AVTN2K"

observations_client
string

Observations of the client

Example:

"Please give me a good table."

If the customer has given marketing consent

Example:

true

discount_code
string

Discount code

Example:

"DISCOUNT20"

info
object

Info about the booking

Response

OK

data
object

Booking

success
boolean
Example:

true