You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove the configuration store for an agent. This endpoint will return 409 Conflict if
the store for this agent is not empty. To remove all existing configurations for an agent from the config store
and delete the store, true must be passed to the all query parameter.
Request:
Authorization: BEARER <jwt_token>
Query Parameters:
all: Boolean (default false)
Response:
With valid BEARER token on success: 204 No Content
With valid BEARER token on failure: 400 Bad Request or 409 Conflict
Content Type: application/json
Body:
{
"error": "<Error Message>"
}
With invalid BEARER token: 401 Unauthorized
The text was updated successfully, but these errors were encountered:
Remove the configuration store for an agent. This endpoint will return
409 Conflict
ifthe store for this agent is not empty. To remove all existing configurations for an agent from the config store
and delete the store,
true
must be passed to theall
query parameter.Request:
BEARER <jwt_token>
all
: Boolean (defaultfalse
)Response:
With valid BEARER token on success:
204 No Content
With valid BEARER token on failure:
400 Bad Request
or409 Conflict
application/json
With invalid BEARER token:
401 Unauthorized
The text was updated successfully, but these errors were encountered: