lasmit / helpscoutreceipt
There is no license information available for the latest version (0.2.5) of this package.
A webhook to add receipt data to a note in new HelpScout conversations
0.2.5
2020-02-19 10:10 UTC
Requires
- php: ^7.0
- helpscout/api-laravel: ~1.0
README
When a new ticket is created in HelpScout, automatically take the attached receipt and lookup values from the App Store and then add the details as a note on the ticket.
Installation
In HelpScout
Login to your account
From the top menu choose Manage > Users
- Select your user
- Select 'My Apps' from the left
- Click 'Create My App'
- For the app name enter
helpscout-receipt
- For the redirection url enter
http://google.com
(This url is required on this form, but not actually used) Copy the App ID and App Secret to
From the top menu choose to open Manage > Apps in a new tab
- Choose Webhooks
- Choose Install
- Copy you the App Secret from the My Apps tab
- Set the callback url to https://
- Select the 'Conversation Created' Event
- Save
- Leave both tabs open
In your code
- Run
composer require lasmit/helpscout-receipt
- Run
php artisan vendor:publish
and chooseProvider: Lasmit\HelpScoutReceipt\HelpScoutReceiptServiceProvider
- In your project, edit
config/helpscoutreceipt.php
- Set helpscout > appsecret to be the secret key you created in the HelpScout section above
- Set helpscout > appid to be the app id from the app you created above
TODO: finish this
Usage
TODO: finish this