Upload Images
POST/v1/partner/bookings/:booking_id/images
Allows uploading images associated with a booking, such as insurance cards or photo IDs. Requires 'write:bookings' scope. Supports various image types for comprehensive patient documentation.
The image
field must be a base64-encoded image. Only single file uploads are allowed, and the image should be appropriately encoded to ensure a valid upload.
Accepts the below image_type values:
photo_id_front
photo_id_back
insurance_card_front
insurance_card_back.
Token scope:{'scope': 'write:bookings'}
Request​
Path Parameters
The unique identifier of the booking to which the image will be uploaded.
- application/json
Body
required
The type of image being uploaded. Must be one of the values defined in the ImageTypes schema
Responses​
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
{
"booking_id": 0,
"image_id": 0,
"image_type": "string"
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}