Get photo id images
GET/v1/partner/bookings/:booking_id/photo-id
Returns the front & back photo-id image urls for this booking.
Token scope:{'scope': 'read:bookings'}
Request​
Path Parameters
booking_id Booking Idrequired
Responses​
- 200
- 400
- 403
- 404
- 422
Successful operation. Returns the photo ID image URLs.
- application/json
- Schema
- Example (from schema)
Schema
expires_at date-timerequired
photo_id_back Photo Id Back (string)required
photo_id_front Photo Id Front (string)required
{
"expires_at": "2024-07-29T15:51:28.071Z",
"photo_id_back": "string",
"photo_id_front": "string"
}
Bad request. No Photo ID Found for this booking.
Access denied due to insufficient permissions.
The requested booking could not be found.
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...