v3 Nylas Scheduler APIs
Number of APIs: 13
Scheduler v3 is a public beta release. It is generally stable, but some features might be added or changed before it is generally available.
This API reference documentation covers the Nylas Scheduler API. See the see the Administration API documentation for information about working with Nylas applications, authentication, connectors, and webhook subscriptions.
Nylas API is designed using the REST ideology to provide simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET
, PUT
, POST
, and DELETE
, and standard status codes. Response bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise.
-
v3-grants/{grant_id}/scheduling/configurations-{configuration_id} - Return a Configuration object GET {{baseUrl}}/v3/grants/:grant_id/scheduling/configurations/:configuration_id
-
v3-grants/{grant_id}/scheduling/configurations-{configuration_id} - Update a Configuration object PUT {{baseUrl}}/v3/grants/:grant_id/scheduling/configurations/:configuration_id
-
v3-scheduling-sessions - Delete a session DELETE {{baseUrl}}/v3/scheduling/sessions/:session_id
-
v3-grants/{grant_id}/scheduling/configurations-{configuration_id} - Delete a Configuration object DELETE {{baseUrl}}/v3/grants/:grant_id/scheduling/configurations/:configuration_id
-
v3-grants/{grant_id}/scheduling/configurations - Create a Configuration object POST {{baseUrl}}/v3/grants/:grant_id/scheduling/configurations
-
v3-scheduling-sessions - Create a session POST {{baseUrl}}/v3/scheduling/sessions
-
v3-scheduling-bookings-{booking_id} - Return a Booking object GET {{baseUrl}}/v3/scheduling/bookings/:booking_id?configuration_id={{configuration_id}}
-
v3-scheduling-bookings-{booking_id} - Reschedule a booking PATCH {{baseUrl}}/v3/scheduling/bookings/:booking_id?configuration_id=<string>
-
v3-scheduling-bookings-{booking_id} - Confirm a booking PUT {{baseUrl}}/v3/scheduling/bookings/:booking_id?configuration_id={{configuration_id}}
-
v3-scheduling-bookings - Book an event POST {{baseUrl}}/v3/scheduling/bookings?configuration_id={{configuration_id}}