Webhooks
Current Customers, Please Read! Salesforce Summer '20 and Winter '21 Update.
The Salesforce Summer '20 and Winter '21 updates have tightened up the guest user access. Guest users can no longer have "View All" permissions. Our Permission Sets have been updated with the latest release to remove this permission. Please upgrade to the latest version and review all of the setup steps below.
Overview
Webhooks provide a mechanism where a server-side application (In this case Stripe) can notify a client-side application (in this case Payments) when a new event (like customer create, update, delete, charge capture, charge failed, etc) has occurred on the server.
Webhooks automatically send specified data to a destination (endpoint) from database events. Our Payments app utilizes webhooks for many of our features, such as updating your Salesforce org with credit card information and creating Dispute records.
Benefits
-
Webhook allows us to stay up-to-date by updating the card on file with any recent changes in the credit card information by major credit card companies.
-
Allow Payouts to be received in Salesforce.
-
After capturing the transaction, webhooks allows disputes to be created in Salesforce.
-
Notifies/updates of any deleted payment gateway customer record or payment method.
-
Recognize any changes in Stripe Billing subscription/Invoices.
-
Maintains consistency of all records from Stripe into Salesforce and so on.
Instructions
Create a Force.com Domain
-
Within Setup In the Quick Find menu, type in and click
Sites
. -
If a Force.com domain has not been set up continue with the instructions, otherwise navigate to the steps for configuring a Site below.
-
Enter a value for your Force.com domain and click
Check Availability
. -
Accept Site terms of use and click
Register My Force.com Domain
.
Site Configuration
-
Click
New
next to Sites. -
Set a
Site Label
,Site Name
, andDefault Web Address
(We suggest usingwebhook
orstripe
). -
Check the
Active
checkbox. -
On the active Site home page field click the
Lookup icon
and select In Maintenance (the page is not visible, it's just a placeholder because a value is required). -
Check
Require Secure Connections (HTTPS)
.
-
Click
Save
.


Assign the Blackthorn | Payments (Site Guest User) permission set to the public user
Site Guest User Permission Set Renamed
For users looking to setup Webhooks with a Payments package older than v5.6 you will need to add the Blackthorn | Payments (Webhooks) permission set. Additionally, you will need to add a Sharing Rule to allow the Site Guest User to access the Payment Gateway object.
The Blackthorn | Payments (Site Guest User) permission set is now a dual purpose permission set with packages v5.6 and beyond. This permission set will be used for webhook setup and REST API setup.
-
Navigate back to the Site you created.
-
Click on the
Public Access Settings
button.


-
Click on the
View Users
orAssign Users
button. -
Click on the link for the site guest user.


- Add the Blackthorn | Payments (Site Guest User) permission set to this user's record.
Not seeing the Blackthorn | Payments (Site Guest User) Permission Set?
This permission set is only available in Payments packages 5.6 and later. Please upgrade to the latest version then try again.
- Click
Save
.


Configure Webhooks and add Webhook Events
Configure Webhook in Stripe
- Navigate to your connected Stripe account dashboard.
If you are creating a Webhook URL for your Stripe account in test mode, make sure the "Viewing test data" switch is on.


- Select the Developers tab on the left-hand side.
- Click the Webhooks tab and select
Add endpoint.
- In the
Endpoint URL
field you need to set the URL to the Salesforce webhook site you just created. You'll need to replace the 3 upper-case values with your org values in this URL:
https://SITE_DOMAIN_NAME/SITE_PATH/services/apexrest/bt_stripe/webhook/WEBHOOK_LABEL
SITE_DOMAIN_NAME = The Salesforce Domain Name for the site you setup. To get this value, navigate to the Site record and look at the Custom URLs related list. Use the Domain Name
value.
Note:
If you see more than 1 domain name, always use the one with secure in the name - these domains use https which is required by Stripe.


SITE_PATH = The Path for the Site. Use the Path
value from the Custom URLs related list of the Site. (Refer above screenshot)
WEBHOOK_LABEL = To get this value, navigate to the Payment Gateway record you want to use. Then copy the value from the Webhook Label
field.


So for the images above, your webhook URL would be:
https://adminmethods.secure.force.com/stripe/services/apexrest/bt_stripe/webhook/test
Note:
If you have multiple Stripe accounts connected to your Salesforce org, and want to create Webhook Endpoint for each in Stripe, you can use the same Salesforce Site - you just need to change WEBHOOK_LABEL part of the Url to the
Webhook Label
value of thePayment Gateway
record you want to use.
- In Events to Send, click "receive all events" and Add endpoint.


Configure Webhook in Auth.net
-
Navigate to your connected Auth.net account dashboard.
-
Click on Account tab | Settings | Webhooks.


-
Click
Add endpoint
. -
Define a
Name
. -
Follow Step 4 from above to generate the
Endpoint URL
field. -
Set
Status
= Active. -
Under Select Events, check
All Events
and clickSave
.


Note:
If you have multiple Auth.net accounts connected to your Salesforce org, and want to create Webhook Endpoint for each in Auth.net, you can use the same Salesforce Site - you just need to change WEBHOOK_LABEL part of the Url to the
Webhook Label
value of thePayment Gateway
record you want to use.
Test Webhook Connection
Test webhook connection in Stripe
Verifying in Test Mode:
-
Select the Webhook tab on the left-hand side.
-
Click on your URL.
-
In the top right, click
Send Test Webhook
.


- Event Type: "Customer.created" and click
Send Test Webhook
.
If you received a "Test webhook sent successfully" message, then Webhooks are set up correctly!


Test webhook connection in Authorize.net
-
Click on Account tab | Settings | Webhooks.
-
Edit Endpoint and flip the status to "Inactive" and click
Save
.
You will see a Test Webhook button as shown in the below screenshot.


If you received a "Ping successful" message at the top, then Webhooks are set up correctly!
Verifying in Live Mode
In live mode, don’t forget to create a new URL. You can copy your Test Webhook URL, and update the Webhook Label
from your live Payment Gateway record.
-
Create a new Customer in Stripe.
-
Click on the newly created customer record, scroll down to Events, and select the Event record.
-
Scroll down to Webhooks.
If the Webhook record says "Success", then Webhooks are set up correctly in Production.


Adding Webhook signatures in Stripe (optional)
Webhook signatures is an additional layer of security. When setting them up, the system makes sure that the webhook event messages are not corrupted in Salesforce.
-
Go to Stripe Dashboard | Webhooks.
-
Select the webhook.
-
On the Signing Secret section click
Click to Reveal
.


-
Navigate in your Salesforce Org to Setup | Custom Metadata Settings.
-
Click Webhook Secret | Manage Records
-
Click
New
. -
Enter values for
Label
,Webhook Secret Name
, andSigning Secret
. -
Click
Save
.


Next Steps
- Insert the Virtual Terminal onto your parent object(s) Page Layouts.
- Use Payment Schedules to create future looking Transactions in minutes.
- Learn about our supported Payment Methods .
Troubleshooting/FAQ
If you have received an error in the Setup Wizard, Webhooks or have a question, please view our Troubleshooting and Frequently Asked Questions. If you still have Setup Wizard or Webhook questions, please contact Blackthorn Support. We're happy to help!
Updated over 1 year ago