GET | /Webhooks/Subscribers/{SubscriberID}/Messages | Retrieves a list of all Webhook messages for a subscriber. |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
SubscriberID | path | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Skip | form | int? | No | |
Take | form | int? | No | |
OrderBy | form | string | No | |
OrderByDesc | form | string | No | |
Include | form | string | No | |
Fields | form | string | No | |
Meta | form | Dictionary<string, string> | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
SubscriberID | form | Guid | No | |
SubscriptionID | form | Guid | No | |
MessageID | form | Guid | No | |
EventName | form | string | No | |
URL | form | string | No | |
Body | form | string | No | |
ItemNo | form | int | No | |
Status | form | byte | No | |
Retries | form | int | No | |
AddedDateTime | form | DateTime | No | |
LastSavedDateTime | form | DateTime | No | |
LastMessageResponseHTTPCode | form | int? | No | |
LastMessageResponseMessage | form | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Offset | form | int | No | |
Total | form | int | No | |
Results | form | List<T> | No | |
Meta | form | Dictionary<string, string> | No | |
ResponseStatus | form | ResponseStatus | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /Webhooks/Subscribers/{SubscriberID}/Messages HTTP/1.1 Host: api.jiwa.com.au Accept: application/json
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"Results":[{"EventName":"String","URL":"String","Body":"String","LastMessageResponseHTTPCode":0,"LastMessageResponseMessage":"String"}],"Meta":{"String":"String"},"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}