The DayPilot.Http.get() method makes an HTTP request to the specified URL using GET method.
The syntax and behavior is inspired by axios.
DayPilot.Http.get(url[, options]);
The DayPilot.Http.get() method returns a promise. If the HTTP response status code is 200, 201, 204 or 304 the promise is resolved, otherwise it is rejected.
The success handler receives an args object as an argument:
The error handler receives an args object as an argument:
const {data} = await DayPilot.Http.get("/events"); console.log("data", data);