Get insurance card images
GET/v1/partner/bookings/:booking_id/insurance-card
Returns the front & back insurance card image urls for this booking.
Token scope:{'scope': 'read:bookings'}
Request​
Path Parameters
booking_id Booking Idrequired
Responses​
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
expires_at date-timerequired
insurance_card_back Insurance Card Back (string)
insurance_card_front Insurance Card Front (string)
{
"expires_at": "2024-07-29T15:51:28.071Z",
"insurance_card_back": "string",
"insurance_card_front": "string"
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...