GET api/webhooks/filters
Gets all WebHook filters that a user can register with. The filters indicate which WebHook events that this WebHook will be notified for.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A representing the operation.
Collection of WebHookFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Gets or sets the name of the filter, e.g. Blob Update. |
string |
- |
| Description |
Gets or sets a description of the filter. |
string |
- |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"Name": "sample string 1",
"Description": "sample string 2"
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfWebHookFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Microsoft.AspNet.WebHooks">
<WebHookFilter>
<Description>sample string 2</Description>
<Name>sample string 1</Name>
</WebHookFilter>
<WebHookFilter>
<Description>sample string 2</Description>
<Name>sample string 1</Name>
</WebHookFilter>
</ArrayOfWebHookFilter>