- Activities
- Timestamps
- Flecto AI
- Services
- Integrations - Email Validate
- Integrations - Google Calendar
- Me
- Me - Addresses
- Me - Identities
- Me - Subscription
- Me - Tax Profiles
- Me - Verification
- User - Bookings Settings
- Business Categories
- SaaS - Bookings
- SaaS - Booking Availability
- SaaS - Booking Customers
- SaaS - Booking Documents
- SaaS - Booking Items
- SaaS - Booking Payments
- SaaS - Booking Status
- SaaS - Bundles
- SaaS - Bundles Items
- SaaS - Chargebee
- SaaS - Customers
- SaaS - Customer Addresses
- SaaS - Inquiry Customers
- SaaS - Inquiry Status
- SaaS - Items
- SaaS - Item Photos
- SaaS - Item Status
- SaaS - Links
- SaaS - Inquiries
- SaaS - Insurances
- SaaS - Products
- Store - Items
- Store - Inquiries
- Links - Booking Documents
- Links - Bookings
- SaaS - Store
- Store
- Me - Item Categories
- Store - Item Categories
Update bundle
PUT
/api/saas/me/bundles/{internal_id}
SaaS - Bundles
Request
Path Params
internal_id
numberÂ
required
enable
booleanÂ
required
Header Params
Authorization
stringÂ
optional
Auth0-IdToken
stringÂ
optional
Accept-Language
stringÂ
optional
Body Params application/json
title
stringÂ
required
Example:
Book - Lord of the Rings
description
stringÂ
required
Example:
Very good condition.
deposit_amount
numberÂ
optional
category_id
numberÂ
optional
bundle_items_attributes
array[object (bundle_item) {5}]Â
optional
item_id
numberÂ
optional
id
numberÂ
optional
quantity
numberÂ
optional
discount_amount
numberÂ
optional
discount_type
enum<string>Â
optional
Allowed values:
discount_valuediscount_percentage
Example:
discount_value|discount_percentage
deposit_type
enum<string>Â
optional
Allowed values:
deposit_by_booking_valuedeposit_by_booking_percentage
Example:
deposit_by_booking_value|deposit_by_booking_percentage
photos_attributes
array [object {3}]Â
optional
main
booleanÂ
optional
photo_image_id
stringÂ
optional
_destroy
booleanÂ
optional
discount_by_quantity
array [object {3}]Â
optional
quantity
numberÂ
required
amount_value
numberÂ
required
amount_type
enum<string>Â
required
Allowed values:
valuepercentage
Example:
value|percentage
Example
{
"title": "Book - Lord of the Rings",
"description": "Very good condition.",
"deposit_amount": 0,
"category_id": 0,
"bundle_items_attributes": [
{
"item_id": 0,
"id": 0,
"quantity": 0,
"discount_amount": 0,
"discount_type": "discount_value"
}
],
"deposit_type": "deposit_by_booking_value",
"photos_attributes": [
{
"main": true,
"photo_image_id": "string",
"_destroy": true
}
],
"discount_by_quantity": [
{
"quantity": 0,
"amount_value": 0,
"amount_type": "value"
}
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://rnters-staging.herokuapp.com/api/saas/me/bundles/' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
This response does not have a body.
🟠422Parameter Error
Modified at 2025-04-23 08:33:48