SaaS - Booking Documents
How to upload documents to Bookings
1. Send a request to /api/me/document_upload
with the file info/metadata.
blob_signed_id
, a upload_url
and the headers
needed to upload the file to cloudflare:{
"blob_signed_id": "<BLOB_SIGNED_ID>",
"upload_url": "<CLOUDFLARE_STORAGE_URL>",
"headers": {
"Content-Type": "application/pdf",
"Content-MD5": "<FILE_MD5_CHECKSUM>",
"Content-Disposition": "inline; filename=\"dummy.pdf\"; filename*=UTF-8''dummy.pdf"
},
"byte_size": 13264
}
2. Send the file to the upload_url
from the previous request with the response headers.
3. Send a request to /api/saas/me/bookings/{internal_id}/documents
with the parameters in the first step response.
{
"data": {
"id": "1",
"type": "booking_document",
"attributes": {
"category": "invoice",
"visible_to_renter": true,
"filename_base": "dummy"
},
"relationships": {
"booking": { "data": { "id": "1", "type": "booking" } }
},
"meta": {
"filename": "dummy.pdf",
"url": "<CLOUDFLARE_STORAGE_URL>",
"content_type": "application/pdf",
"byte_size": 13264
}
}
}
Modified at 2024-10-22 18:04:25