CALLBACKS Endpoints

Get list of all active callbacks

get
Authorizations
Responses
200Success
application/json
get
GET /callbacks HTTP/1.1
Host: tunell-gateway.ecng.digital
X-API-KEY: YOUR_API_KEY
Accept: */*
[
  {
    "id": "1",
    "createAt": "2025-07-19T16:52:22.798Z",
    "url": "https:/example.com/123?q=1&p=2",
    "events": [
      "incoming",
      "outgoing",
      "deposit"
    ]
  }
]

Create a new callback

post
Authorizations
Body
urlstringRequiredExample: https://example.com/123?q=1&p=2
Responses
200Success
application/json
post
POST /callbacks HTTP/1.1
Host: tunell-gateway.ecng.digital
X-API-KEY: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 59

"url='https://example.com/123?q=1&p=2'&transactions=[]"
{
  "id": 1
}

Delete specific callback

delete
Authorizations
Path parameters
idnumberRequired
Responses
204Success
application/json
delete
DELETE /callbacks/{id} HTTP/1.1
Host: tunell-gateway.ecng.digital
X-API-KEY: YOUR_API_KEY
Accept: */*
{
  "status": "true"
}

Last updated