Merchant API
Retrieve a webhook list
api
get
/api/1.0/webhooks

Retrieve a webhook list

Get a list of webhooks that you are currently subscribed to.

Request

Header Parameters
Header Parameters

Response

OK

Response body
Body array of objects
Was this page helpful?
GET
/api . /1.0 . /webhooks . 
Parameters
curl -L -X GET 'https://merchant.revolut.com/api/1.0/webhooks' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <yourSecretApiKey>'
Response body samples
[
{
"id": "6fc8db62-6489-4470-a9e0-84b462fe3908",
"url": "https://revolut.com/webhooks",
"events": [
"ORDER_COMPLETED"
]
},
{
"id": "b466ab77-4932-4850-beb0-113bfc1166f8",
"url": "https://business.revolut.com/webhooks",
"events": [
"ORDER_COMPLETED",
"ORDER_AUTHORISED"
]
},
{
"id": "4a31c8a3-8037-4260-a09e-090475d37025",
"url": "https://developer.revolut.com/webhooks",
"events": [
"ORDER_AUTHORISED"
]
},
{
"id": "5d815041-5753-46bc-aebc-315fe99f30aa",
"url": "https://example.com/webhooks",
"events": [
"ORDER_COMPLETED",
"ORDER_AUTHORISED"
]
}
]