List Webhooks
List all configured webhooks.
Endpoint
GET /v1/webhooksAuthentication
Header
Value
Query parameters
Parameter
Type
Required
Description
Example request
curl -X GET "https://ramp-api.ivorypay.io/api/v1/webhooks?environment=LIVE" \
-H "Authorization: Bearer <jwt>"const params = new URLSearchParams({
environment: "LIVE",
});
const response = await fetch(`https://ramp-api.ivorypay.io/api/v1/webhooks?${params}`, {
method: "GET",
headers: {
"Authorization": "Bearer <jwt>",
},
});
const data = await response.json();
console.log(data);import requests
response = requests.get(
"https://ramp-api.ivorypay.io/api/v1/webhooks",
headers={
"Authorization": "Bearer <jwt>",
},
params={
"environment": "LIVE",
},
)
print(response.json())Example response
Last updated