listBookings method
Retrieve a collection of bookings.
To call this endpoint with buyer-level permissions, set APPOINTMENTS_READ for the OAuth scope. To call this endpoint with seller-level permissions, set APPOINTMENTS_ALL_READ and APPOINTMENTS_READ for the OAuth scope.
Implementation
Future<BookingsResponse> listBookings({
required ListBookingsRequest request,
String? authToken,
}) async {
authToken ??= authenticationService.getCachedToken()?.accessToken;
Map<String, String> headers = {
"Authorization": "Bearer ${authToken ?? ""}",
'Content-Type': 'application/json; charset=UTF-8',
'Accept': 'application/json',
};
Uri endpoint = Uri.https(
baseUrl, "/v2/bookings", request.toJson().toQueryParam());
//print (endpoint.toString());
var response = await
http.get(endpoint, headers: headers);
if (response.statusCode == 200) {
print (jsonDecode(response.body));
return BookingsResponse.fromJson(jsonDecode(response.body));
}
else {
print (response.body);
throw BookingsException(statusCode: response.statusCode, message: BookingsResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
}
}