Register a new webhook for receiving callback notifications from EasyEuro system.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"url": "string",
"eventTypes": [
"Wallet"
],
"signatureAlgorithm": "string"
}
Request Code Samples
curl --location --request POST '/webhook' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"url": "string",
"eventTypes": [
"Wallet"
],
"signatureAlgorithm": "string"
}'
Responses
application/json {
"url": "string",
"eventTypes": [
"Wallet"
],
"signatureAlgorithm": "string",
"id": "string"
}
Modified at 2023-06-26 08:27:04