GET api/v1/Webhooks/Subscriptions/PendingPayloads

Gets webhook subscriptions which have sent payloads that aren't sent successfully (state = 3 or 4).

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of webhook subscriptions which have events which aren't sent successfully

GetSubscriptionsWithPendingPayloadsResult
NameDescriptionTypeAdditional information
SubscriptionIds

Collection of globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
{
  "SubscriptionIds": [
    "3703e579-00a4-4d4d-9454-56fcea285f25",
    "c734800e-aa8a-430e-9260-58b789ffd15d"
  ]
}

application/xml, text/xml

Sample:
<GetSubscriptionsWithPendingPayloadsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iloq.manager.server.bus.webhookservicews.Subscriptions">
  <SubscriptionIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>3703e579-00a4-4d4d-9454-56fcea285f25</d2p1:guid>
    <d2p1:guid>c734800e-aa8a-430e-9260-58b789ffd15d</d2p1:guid>
  </SubscriptionIds>
</GetSubscriptionsWithPendingPayloadsResult>