Skip to main content

Check out Port for yourself 

Delete a webhook

DELETE 

https://api.port.io/v1/webhooks/:identifier

This route allows you to delete a webhook in your Port organization. You can also delete it via the data sources page of your Port account.

To learn more about webhooks, check out the documentation.

Request

Path Parameters

    identifier stringrequired

    The identifier of the webhook you want to delete.

Responses

Default Response

Authorization: Authorization

name: Authorizationtype: apiKeyscopes: delete:integrationsin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://api.port.io/v1/webhooks/:identifier");
request.Headers.Add("Authorization", "<Authorization>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.port.io
Auth
Parameters
— pathrequired
ResponseClear

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