- 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
- Shows all booking documentsGET
- Creates a booking documentPOST
- Shows booking documentGET
- Destroy booking documentDELETE
- Updates a booking documentPUT
- Quote previewGET
- Contract previewGET
- Proforma previewGET
- Generates a PDF for a bookingPOST
- Generates a contract PDF for a bookingPOST
- Generates a PDF for a bookingPOST
- 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 - Links
- SaaS - Inquiries
- SaaS - Insurances
- SaaS - Products
- Store - Inquiries
- Links - Booking Documents
- Links - Bookings
- SaaS - Store
- Store
- Me - Item Categories
- Store - Item Categories
- Store - Products
- Me - Onboarding
- SaaS - Booking Services
- SaaS - Product Status
Updates a booking document
PUT
/api/saas/me/bookings/{booking_internal_id}/documents/{id}
SaaS - Booking Documents
Request
Path Params
booking_internal_id
numberÂ
required
id
numberÂ
required
Header Params
Authorization
stringÂ
optional
Auth0-IdToken
stringÂ
optional
Accept-Language
stringÂ
optional
Body Params application/json
filename_base
stringÂ
optional
visible_to_renter
booleanÂ
optional
file_id
stringÂ
optional
content
stringÂ
optional
signed_at
string <date>
optional
>= 0 characters<= 10 characters
category
enum<string>Â
optional
Allowed values:
othersinvoicecontractimagequoteproforma
Example:
others|invoice|contract|image|quote|proforma
options
objectÂ
optional
folder_name
stringÂ
optional
html_header
stringÂ
optional
html_footer
stringÂ
optional
Example
{
"filename_base": "string",
"visible_to_renter": true,
"file_id": "string",
"content": "string",
"signed_at": "2019-08-24",
"category": "others",
"options": {
"folder_name": "string",
"html_header": "string",
"html_footer": "string"
}
}
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/bookings//documents/' \
--header 'Content-Type: application/json' \
--data-raw '{
"filename_base": "string",
"visible_to_renter": true,
"file_id": "string",
"content": "string",
"signed_at": "2019-08-24",
"category": "others",
"options": {
"folder_name": "string",
"html_header": "string",
"html_footer": "string"
}
}'
Responses
🟢200OK
This response does not have a body.
Modified at 2025-05-28 14:14:38