Delete Environment
DELETE/v1/environments/{environment_id}
Delete an environment by ID. Returns a confirmation of the deletion.
Parameters
Returns
Delete Environment
EnvironmentDeleteParams parameters = new()
{
EnvironmentID = "env_011CZkZ9X2dpNyB7HsEFoRfW"
};
var betaEnvironmentDeleteResponse = await client.Beta.Environments.Delete(parameters);
Console.WriteLine(betaEnvironmentDeleteResponse);Response 200
{
"id": "env_011CZkZ9X2dpNyB7HsEFoRfW",
"type": "environment_deleted"
}Returns Examples
Response 200
{
"id": "env_011CZkZ9X2dpNyB7HsEFoRfW",
"type": "environment_deleted"
}