Walkthrough
This walkthrough covers how to build with R2 Events and Callbacks (aka "webhooks"), which are payloads of event metadata automatically sent to your app when something happens in R2.
Setting Up R2 Events
Enabling R2 Events (webhooks
) requires two distinct steps:
- Setting the callback url at the account or app level, which are both covered in the sections directly below.
- Please check this section JWT Token Generation
- Responding to the event with to verify it was received.
Set R2 Callback Url
- You can change your account callback url with the R2 API by sending a
PUT
request to/callbacks
and passing acallback_url
.
curl -X PUT 'https://gateway-dev.r2capital.co:443/v2/partners' \
-H 'Authorization: YOUR_R2_JWT_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"callback_url":"http://example.com/callbacks/r2"}'
- Alternatively, your account callback url can be changed from your API settings page.
Responding to Events
R2 sends events to a callback url and expects a specific response in order to verify that events are being sent to a live server. Once an event is sent, the callback url must return an HTTP 200
with a response body that contains the string R2 API Event Received
. If no response is received, R2 considers that a failed callback and the event will be sent again later.
R2 will try up to 6 times to send the event message, after that you could access to R2 backoffice and retry to send the event manually.
Note: Every try will read the last callback_url
from R2 database.
Testing your Callback Url
When setting the callback url for your app or account in the Partners platform web UI, you can trigger a test event by clicking the test button next to the field. This is a great way to verify that your webhook handler is responding to events successfully.
- Successful response:
"R2 API Event Received"
- Failed response (Could be a free text to describe the error)
"Error on server"
Callback Request Format
Once you've setup a callback url, R2 sends event data to that URL in the form of POST
requests. This section contains information about how those requests are formatted so you can better understand how to interact with the event data.
Content Type
By default, the POST
requests are sent as json.
Event Payload
Event payloads always include an event
field, which contains basic information about the event that occurred (such as time and type). Event payloads may include a financing
, application
, payment
, collection
depending on what event took place. Here's an example of an event payload for a financing
event:
{
"event": {
"event_time": "1348177752",
"event_type": "financing_created",
"event_metadata": {}
},
"financing": {
"financing_id": "fa5c8a0b0f492d768749333ad6fcc214c111e967",
"disbursed_amount": 1000,
"total_repayment_amount": 1500,
"repayment_rate": 0.14,
"currency": "COP",
"metadata": {},
"created_at": 1570471067,
"custom_fields": [],
"requester_email_address": "[email protected]"
}
}
Event Type
Every event payload contains an event_type
parameter that provides the name of the specific event that occurred:
{
"event": {
"event_time": "1348177752",
"event_type": "financing_created",
"event_metadata": {}
},
"financing": {
...
}
}
{
"event": {
"event_time": "1348177752",
"event_type": "application_created",
"event_metadata": {}
},
"application": {
...
}
}
Generally speaking, checking the event_type
is the best approach to filtering for specific events and automating your integration with the R2 API.
if (event.event_type === "financing_created") {
// create financing in your platform
}
Securing your Callback Handler
IP Address Whitelisting
This is the full list of IP addresses that webhook events may come:
{
"creationDate": "2024-01-22-14-11-43",
"ips": {
"us": [
"54.151.119.16/32",
"54.215.38.39/32"
]
}
}
This list will be automatically updated if the IP addresses change. We recommend checking this list periodically to ensure your callback handler is secure.
Currently we have just one IP address per environment. PROD 54.215.38.39, and DEV 54.151.119.16
HTTP Headers
We provide a couple of headers on callback requests to help you identify them.
Name | Description | Value |
---|---|---|
User-Agent | A token identifying us | R2 API |
Content-Sha256 | A base64 encoded SHA256 signature of the request's JSON payload, generated using your jwtSecret.echo -n $json | openssl dgst -sha256 -hmac $jwtSecret | Example value:Y2Y2MzVhOTdiZDVhZ mVhNWRiYWJmMmRi ZGRhOGQzYWE3OGU 1NWIxNDkzMzgzNzdj MWI5M2Y1OGEzYzEy NzZjMg= |
Failures and Retries
If your callback url is not reachable or returns a non-successful response, we will retry POSTing the event up to 6 times, with each retry interval being exponentially longer than the previous one. If the sixth retry fails, we will clear your callback url and you must enter a new one to receive future callback events.
Please note that our requests will timeout after 30 seconds, so callbacks will fail if your server takes longer than that to respond. The retry pattern is described below, an alert email will be sent to you after POSTing has failed several times.
Retry | Delay After Previous Attempt |
---|---|
1st | 5min |
2nd | 15min |
3rd | 45min |
4th | 2h 15min |
5th | 6h 45min |
6th | 20h 15min |
Updated 7 months ago