Update a webhook
PUThttps://api.fuse.io/api/v0/notifications/webhook
Update a webhook's details such as its URL or event type.
Request
Responses
- 200
- 403
Webhook successfully updated.
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.Put, "https://api.fuse.io/api/v0/notifications/webhook");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"webhookId\": \"string\",\n \"webhookUrl\": \"string\",\n \"eventType\": \"string\"\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear