curl -X PUT "https://api.playground.try.be/shop/area-booking-types/abc123" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"name": "Poolside Cabana",
"description": "A private four-person cabana steps from the main pool with\ndedicated wait service.\n",
"product_code": "CABANA-POOL-4P",
"external_id": "ext-cabana-pool-4p",
"currency": "gbp",
"start_time_interval": 30,
"duration_interval": 60,
"min_duration": 120,
"max_duration": 480,
"end_buffer": 15,
"max_baskets": 1,
"max_guests": 4,
"area_ids": [
"64a9f3b2c3d8e1f4a5b6c7d8"
],
"category_ids": [
"64a9f3b2c3d8e1f4a5b6c7d8"
],
"offered_online": false,
"private": false,
"visibility": "public",
"customers_only": false,
"members_only": false,
"permitted_membership_type_ids": [
"00000000-0000-0000-0000-000000000000"
],
"membership_booking_windows_enabled": false,
"membership_booking_windows": [
{
"membership_type_id": "00000000-0000-0000-0000-000000000000",
"max_advance_bookings_interval": "P2W",
"min_advance_bookings_interval": "P2D"
}
],
"max_advance_bookings_interval": "P30D",
"min_advance_bookings_interval": "PT2H",
"customer_cancellation_permitted": "allowed",
"customer_cancellation_min_duration": "PT24H",
"include_pricing_on_calendar": false,
"max_per_basket": 4,
"max_per_guest": 2,
"revenue_centre": "pool-cabanas",
"upsell_offerings": [
{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment"
}
],
"cross_sell_offerings": [
{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment"
}
],
"related_retail_offerings": [
{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment"
}
],
"image_id": "5f1234567890abcdef123456",
"meta": {
"title": "string",
"description": "Free-form text from the resource."
}
}'
const response = await fetch('https://api.playground.try.be/shop/area-booking-types/abc123', {
method: 'PUT',
headers: {
Authorization: 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
Accept: 'application/json',
},
body: JSON.stringify({
"name": "Poolside Cabana",
"description": "A private four-person cabana steps from the main pool with\ndedicated wait service.\n",
"product_code": "CABANA-POOL-4P",
"external_id": "ext-cabana-pool-4p",
"currency": "gbp",
"start_time_interval": 30,
"duration_interval": 60,
"min_duration": 120,
"max_duration": 480,
"end_buffer": 15,
"max_baskets": 1,
"max_guests": 4,
"area_ids": [
"64a9f3b2c3d8e1f4a5b6c7d8"
],
"category_ids": [
"64a9f3b2c3d8e1f4a5b6c7d8"
],
"offered_online": false,
"private": false,
"visibility": "public",
"customers_only": false,
"members_only": false,
"permitted_membership_type_ids": [
"00000000-0000-0000-0000-000000000000"
],
"membership_booking_windows_enabled": false,
"membership_booking_windows": [
{
"membership_type_id": "00000000-0000-0000-0000-000000000000",
"max_advance_bookings_interval": "P2W",
"min_advance_bookings_interval": "P2D"
}
],
"max_advance_bookings_interval": "P30D",
"min_advance_bookings_interval": "PT2H",
"customer_cancellation_permitted": "allowed",
"customer_cancellation_min_duration": "PT24H",
"include_pricing_on_calendar": false,
"max_per_basket": 4,
"max_per_guest": 2,
"revenue_centre": "pool-cabanas",
"upsell_offerings": [
{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment"
}
],
"cross_sell_offerings": [
{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment"
}
],
"related_retail_offerings": [
{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment"
}
],
"image_id": "5f1234567890abcdef123456",
"meta": {
"title": "string",
"description": "Free-form text from the resource."
}
}),
})
if (!response.ok) {
throw new Error(`Trybe API ${response.status}: ${await response.text()}`)
}
const data = await response.json()
import httpx
response = httpx.put(
"https://api.playground.try.be/shop/area-booking-types/abc123",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Accept": "application/json",
"Content-Type": "application/json",
},
json={
"name": "Poolside Cabana",
"description": "A private four-person cabana steps from the main pool with\ndedicated wait service.\n",
"product_code": "CABANA-POOL-4P",
"external_id": "ext-cabana-pool-4p",
"currency": "gbp",
"start_time_interval": 30,
"duration_interval": 60,
"min_duration": 120,
"max_duration": 480,
"end_buffer": 15,
"max_baskets": 1,
"max_guests": 4,
"area_ids": [
"64a9f3b2c3d8e1f4a5b6c7d8"
],
"category_ids": [
"64a9f3b2c3d8e1f4a5b6c7d8"
],
"offered_online": False,
"private": False,
"visibility": "public",
"customers_only": False,
"members_only": False,
"permitted_membership_type_ids": [
"00000000-0000-0000-0000-000000000000"
],
"membership_booking_windows_enabled": False,
"membership_booking_windows": [
{
"membership_type_id": "00000000-0000-0000-0000-000000000000",
"max_advance_bookings_interval": "P2W",
"min_advance_bookings_interval": "P2D"
}
],
"max_advance_bookings_interval": "P30D",
"min_advance_bookings_interval": "PT2H",
"customer_cancellation_permitted": "allowed",
"customer_cancellation_min_duration": "PT24H",
"include_pricing_on_calendar": False,
"max_per_basket": 4,
"max_per_guest": 2,
"revenue_centre": "pool-cabanas",
"upsell_offerings": [
{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment"
}
],
"cross_sell_offerings": [
{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment"
}
],
"related_retail_offerings": [
{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment"
}
],
"image_id": "5f1234567890abcdef123456",
"meta": {
"title": "string",
"description": "Free-form text from the resource."
}
},
)
response.raise_for_status()
data = response.json()
<?php
$client = new \GuzzleHttp\Client();
$response = $client->request('PUT', 'https://api.playground.try.be/shop/area-booking-types/abc123', [
'headers' => [
'Authorization' => 'Bearer YOUR_API_KEY',
'Accept' => 'application/json',
'Content-Type' => 'application/json',
],
'json' => [
'name' => 'Poolside Cabana',
'description' => 'A private four-person cabana steps from the main pool with
dedicated wait service.
',
'product_code' => 'CABANA-POOL-4P',
'external_id' => 'ext-cabana-pool-4p',
'currency' => 'gbp',
'start_time_interval' => 30,
'duration_interval' => 60,
'min_duration' => 120,
'max_duration' => 480,
'end_buffer' => 15,
'max_baskets' => 1,
'max_guests' => 4,
'area_ids' => [
'64a9f3b2c3d8e1f4a5b6c7d8'
],
'category_ids' => [
'64a9f3b2c3d8e1f4a5b6c7d8'
],
'offered_online' => false,
'private' => false,
'visibility' => 'public',
'customers_only' => false,
'members_only' => false,
'permitted_membership_type_ids' => [
'00000000-0000-0000-0000-000000000000'
],
'membership_booking_windows_enabled' => false,
'membership_booking_windows' => [
[
'membership_type_id' => '00000000-0000-0000-0000-000000000000',
'max_advance_bookings_interval' => 'P2W',
'min_advance_bookings_interval' => 'P2D'
]
],
'max_advance_bookings_interval' => 'P30D',
'min_advance_bookings_interval' => 'PT2H',
'customer_cancellation_permitted' => 'allowed',
'customer_cancellation_min_duration' => 'PT24H',
'include_pricing_on_calendar' => false,
'max_per_basket' => 4,
'max_per_guest' => 2,
'revenue_centre' => 'pool-cabanas',
'upsell_offerings' => [
[
'offering_id' => '64a9f3b2c3d8e1f4a5b6c7d8',
'offering_name' => 'Twilight massage',
'offering_type' => 'appointment'
]
],
'cross_sell_offerings' => [
[
'offering_id' => '64a9f3b2c3d8e1f4a5b6c7d8',
'offering_name' => 'Twilight massage',
'offering_type' => 'appointment'
]
],
'related_retail_offerings' => [
[
'offering_id' => '64a9f3b2c3d8e1f4a5b6c7d8',
'offering_name' => 'Twilight massage',
'offering_type' => 'appointment'
]
],
'image_id' => '5f1234567890abcdef123456',
'meta' => [
'title' => 'string',
'description' => 'Free-form text from the resource.'
]
],
]);
$data = json_decode($response->getBody(), true);
package main
import (
"bytes"
"encoding/json"
"net/http"
)
func main() {
payload, _ := json.Marshal(map[string]interface{}{
"name": "Poolside Cabana",
"description": "A private four-person cabana steps from the main pool with\ndedicated wait service.\n",
"product_code": "CABANA-POOL-4P",
"external_id": "ext-cabana-pool-4p",
"currency": "gbp",
"start_time_interval": 30,
"duration_interval": 60,
"min_duration": 120,
"max_duration": 480,
"end_buffer": 15,
"max_baskets": 1,
"max_guests": 4,
"area_ids": []interface{}{
"64a9f3b2c3d8e1f4a5b6c7d8",
},
"category_ids": []interface{}{
"64a9f3b2c3d8e1f4a5b6c7d8",
},
"offered_online": false,
"private": false,
"visibility": "public",
"customers_only": false,
"members_only": false,
"permitted_membership_type_ids": []interface{}{
"00000000-0000-0000-0000-000000000000",
},
"membership_booking_windows_enabled": false,
"membership_booking_windows": []interface{}{
map[string]interface{}{
"membership_type_id": "00000000-0000-0000-0000-000000000000",
"max_advance_bookings_interval": "P2W",
"min_advance_bookings_interval": "P2D",
},
},
"max_advance_bookings_interval": "P30D",
"min_advance_bookings_interval": "PT2H",
"customer_cancellation_permitted": "allowed",
"customer_cancellation_min_duration": "PT24H",
"include_pricing_on_calendar": false,
"max_per_basket": 4,
"max_per_guest": 2,
"revenue_centre": "pool-cabanas",
"upsell_offerings": []interface{}{
map[string]interface{}{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment",
},
},
"cross_sell_offerings": []interface{}{
map[string]interface{}{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment",
},
},
"related_retail_offerings": []interface{}{
map[string]interface{}{
"offering_id": "64a9f3b2c3d8e1f4a5b6c7d8",
"offering_name": "Twilight massage",
"offering_type": "appointment",
},
},
"image_id": "5f1234567890abcdef123456",
"meta": map[string]interface{}{
"title": "string",
"description": "Free-form text from the resource.",
},
})
req, _ := http.NewRequest("PUT", "https://api.playground.try.be/shop/area-booking-types/abc123", bytes.NewBuffer(payload))
req.Header.Set("Authorization", "Bearer YOUR_API_KEY")
req.Header.Set("Accept", "application/json")
req.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
var data map[string]interface{}
json.NewDecoder(resp.Body).Decode(&data)
}