Skip to main content

Delete Integration

DELETE 

https://api.configcat.com/v1/integrations/:integrationId

This endpoint removes a Integration identified by the integrationId parameter.

Request

Responses

When the delete was successful.

Authorization: http

name: Basictype: httpdescription: To authenticate with the API you have to fill the `Authorization` HTTP request header with your Public API credentials.

You can create your credentials on the <a target="_blank" href="https://app.configcat.com/my-account/public-api-credentials">Public API credentials management page</a>.scheme: basic
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://api.configcat.com/v1/integrations/:integrationId");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.configcat.com
Auth
Parameters
— pathrequired
ResponseClear

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