Skip to main content

Update a webhook

PUT 

https://api.fuse.io/api/v0/notifications/webhook

Update a webhook's details such as its URL or event type.

Request

Responses

Webhook successfully updated.
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());
Request Collapse all
Base URL
https://api.fuse.io/api/v0/notifications
Parameters
— queryrequired
— headerrequired
Body required
{
  "webhookId": "string",
  "webhookUrl": "string",
  "eventType": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!

Was this page helpful?