nylas
Version:
A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.
16 lines (15 loc) • 475 B
JavaScript
import { Resource } from './resource.js';
import { makePathParams } from '../utils.js';
export class SchedulerAvailability extends Resource {
/**
* Get availability for a scheduling configuration
* @return The availability response with time slots
*/
get({ queryParams, overrides, }) {
return super._find({
path: makePathParams('/v3/scheduling/availability', {}),
queryParams,
overrides,
});
}
}