v5.4.0
This new release of the Nylas Python SDK a new feature as well as a couple of enhancements.
New Features
- Add job status support
Enhancements
- Add
is_primary
field to Calendar - Fix bug where updating an Event results in an API error
Usage
Job Status
To view all Job statuses
job_statuses = nylas.job_statuses.all()
To view a specific Job status
job_status = nylas.job_statuses.get("JOB_STATUS_ID")
To get a boolean value representing Job status success/failure
job_status = nylas.job_statuses.get("JOB_STATUS_ID")
job_status.is_successful()