POST
/
api
/
service
/
webhook-subscription
/
list
curl --request POST \
  --url https://api.sand.getivy.de/api/service/webhook-subscription/list \
  --header 'Content-Type: application/json' \
  --header 'X-Ivy-Api-Key: <api-key>' \
  --data '{
  "limit": 10,
  "skip": 1
}'
{
  "items": [
    {
      "id": "<any>",
      "merchant": "<any>",
      "merchantApp": "<any>",
      "url": "<string>",
      "events": [
        "test"
      ],
      "createdAt": "<any>",
      "updatedAt": "<any>"
    }
  ],
  "skip": 1,
  "hasNext": true,
  "count": 0
}

Authorizations

X-Ivy-Api-Key
string
header
required

API key for authentication

Body

application/json

Response

200 - application/json

Returns a list of webhook subscriptions.

The response is of type object.