DELETE
/_project_routing/{name}
Console
DELETE _project_routing/aws-us-only
resp = client.project_routing.delete(
name="aws-us-only",
)
const response = await client.projectRouting.delete({
name: "aws-us-only",
});
response = client.project_routing.delete(
name: "aws-us-only"
)
$resp = $client->projectRouting()->delete([
"name" => "aws-us-only",
]);
curl -X DELETE -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_project_routing/aws-us-only"
Response examples (200)
{
"acknowledged": true
}