Get addresses for a webhook
GEThttps://api.fuse.io/api/v0/notifications/webhook/addresses/:webhookId
Retrieve all addresses associated with a specific webhook.
Request
Responses
- 200
- 403
List of all addresses for the specified webhook.
Access to the resource is forbidden.
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.fuse.io/api/v0/notifications/webhook/addresses/:webhookId");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear