API Reference

List webhooks

GET/web_hooks

Query Parameters

limitinteger (int32)(optional)· Defaults to 10

The number of records to return per request. The maximum records per request is 50

offsetinteger (int32)(optional)· Defaults to 1

The pagination offset for the request.

Request

curl
curl https://gateway.pmnts-sandbox.io/v1.0/web_hooks -u TEST:TEST

Response

200Result
json
{
   "response" : [
    {
     "id" : "071-WH-LPN9BZVS",
     "authentication_username" : null,
     "mode" : "Test",
     "events" : "*",
     "is_active" : null,
     "address" : "http://stage.example.com.au/v1/api/hook_listener",
     "authentication_password" : "",
     "name" : "New Test hook"
    }
   ],
   "errors" : [],
   "successful" : true,
   "test" : true
}