taxjar/help_scout-sdk

Mailbox API 2.0

Closed this issue · 4 comments

Any plans to support Mailbox API 2.0?

On June 6th, 2019, Mailbox API 1.0 will be sunsetted, and at that time any apps using this legacy API will no longer work.

Hey @dsshap, we will be updating this and have it prioritized for early May.

any updates on this?

This is being prioritized for work this week, we'll have an update soon.

We just cut a pre-release version of this gem (v1.0.0.pre) that supports Mailbox API 2.0. We have a little more testing and code review todo before releasing v1.0.0 and pushing to RubyGems, but it's available to try out if you're looking to add support for Mailbox API 2.0.

For your Gemfile:

gem "help_scout-sdk", git: 'https://github.com/taxjar/help_scout-sdk', tag: 'v1.0.0.pre'

To config:

HelpScout.configure do |config|
  config.app_id = ENV.fetch('HELP_SCOUT_APP_ID')
  config.app_secret = ENV.fetch('HELP_SCOUT_APP_SECRET')
  config.default_mailbox = ENV.fetch('MAILBOX_ID')
end

More in the README.