Skip to main content

Delete organization

DELETE 

https://app.tolgee.io/v2/organizations/:id

Deletes organization and all its data including projects

Request

Path Parameters

    id int64required

Responses

OK

Authorization: http

name: SuperJwtTokentype: httpdescription: Super JWT token is required for sensitive operations when user has set 2FA. You can obtain super JWT token via `/v2/user/generate-super-token` endpoint. But be careful! Super JWT Token has super powers!scheme: bearerbearerFormat: JWT
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://app.tolgee.io/v2/organizations/:id");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://app.tolgee.io
Auth
Parameters
— pathrequired
ResponseClear

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