Please follow steps below to activate checkout:
Sign In to BridgerPay dashboard by entering your credentials.
Navigate to the menu in the top left corner and click on “Checkout”.
Copy the activation key shown on the checkout.
Use an API platform, for example Postman or Insomnia and send a POST request.
Add new request and enter the link below along the activation key that was copied earlier. Also select “Post” as the method.
https://signup.bridgerpay.com/api/v2/license/activate/{{ACTIVATION KEY}}
Note: Instead of brackets you should paste your activation key as shown on the image below.
Press on the “body”, select “raw” and choose “JSON” from drop down list.
In the body of the request paste the text from below and change URLs inside the brackets to your URLs.
Note:
Make sure you set all your URLs that you are going to use in the body before activating. You cannot change this once it's activated. Body provided is an example, you can leave URLs as empty strings if not going to be used.
Webhook, Success, Cancel, Failure URLs are not mandatory but if you will use them you must set them now.{
"webhook_url": "{{URL WHERE TRANSACTION NOTIFICATIONS WILL BE SENT TO}}",
"success_redirect_url": "{{REDIRECT URL FOR SUCCESSFUL TRANSACTIONS}}",
"cancel_redirect_url": "{{REDIRECT URL FOR CANCELED TRANSACTIONS}}",
"failure": "{{REDIRECT URL FOR FAILED TRANSACTIONS}}",
"domain": "{{WEBSITE URL}}",
"plugin_type": "websdk-embed"
}Description of the links:
"webhook_url":"{{URL WHERE TRANSACTION NOTIFICATIONS WILL BE SENT TO}}"
“webhook_url” is an URL of the page where automated message sent to when something happens. An example would be a response to CRM to keep track of your company operations.
success_redirect_url":"{{REDIRECT URL FOR SUCCESSFUL TRANSACTIONS}}"
“success_redirect_url” is the URL of the web page where user will be transferred to after the successful payment.
"cancel_redirect_url":"{{REDIRECT URL FOR CANCELED TRANSACTIONS}}"
“cancel_redirect_url” is the URL of the web page where user will be transferred after canceled payment.
"failure": "{{REDIRECT URL FOR FAILED TRANSACTIONS}}"
“failure” is the URL of the web page where user will be transferred after failed payment.
domain": "{{WEBSITE URL}}"
“domain” is the URL of your webpage.
Important note:
Please make sure that all the URLs are correct as you will not be able to change them.
*Please note that only the webhook_url and domain parameters are mandatory. In case you do not use redirects, they can be left blank.
Important note:
Please make sure that you save all the fields from the result of authorization, as these credentials will be for integration. Otherwise, they might get lost and you won’t be able to retrieve them.