Skip to content

v5.4.0

Compare
Choose a tag to compare
@mrashed-dev mrashed-dev released this 16 Dec 19:05
· 113 commits to main since this release

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()