curl --request DELETE \
--url http://localhost:8000/controllers/configs/{config_name} \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Delete controller configuration.
Args: config_name: Name of the configuration file to delete
Returns: Success message when configuration is deleted
Raises: HTTPException: 404 if configuration not found
curl --request DELETE \
--url http://localhost:8000/controllers/configs/{config_name} \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Was this page helpful?