Service2
Service API version 2
GET
/CAPE2/ServiceBooking/
Get all service bookings on CAPE2
Request body
Object
Default:
{
"CapeDealerID": "10001",
"[...]": ""
}CapeDealerID
string
required
Example:
10001
DateRange
Object
DateRange
StartDate
string
Example:
10-11-2025
EndDate
string
Example:
20-11-2025
Responses
200
OK
Body
Object
Bookings
Object
Bookings
Array
Object
BookingType
string
Example:
Service
ServiceDate
string
Example:
2025-11-05
Workshop
Object
WorkshopID
string
Example:
W001
WorkshopName
string
Example:
Central Workshop
WIPNo
string
Example:
JOB123456
BookingStatus
string
Example:
Confirmed
Service
Object
ServiceCode
string
Example:
SVC01
ServiceInterval
string
Example:
12 months / 15000 km
ServiceNotes
string
Example:
Check brakes and tires
BookingType
string
Example:
Service
ServiceDate
string
Example:
2025-11-15
Workshop
Object
WorkshopID
string
Example:
W002
WorkshopName
string
Example:
Central Workshop
ServiceDetails
Object
WIPNo
string
Example:
JOB123456
BookingStatus
Array
of
string
Example:
Confirmed
CancelledServiceCode
string
Example:
SVC01
ServiceInterval
string
Example:
12 months / 15000 km
ServiceNotes
string
Example:
Check brakes and tires
Examples
{ “Bookings”: [ { “BookingType”: “Service”, “ServiceDate”: “2025-11-05”, “Workshop”: { “WorkshopID”: “W001”, “WorkshopName”: “Central Workshop” }, “WIPNo”: “JOB123456”, “BookingStatus”: “Confirmed”, “Service”: { “ServiceCode”: “SVC01”, “ServiceInterval”: “12 months / 15000 km”, “ServiceNotes”: “Check brakes and tires” } } ] }
{}