For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
EnterpriseQuick Start
API ReferenceTutorials
  • Introduction
    • Getting started
  • API Reference
      • GETList ML backends
      • POSTAdd ML Backend
      • GETGet ML Backend
      • DELRemove ML Backend
      • PATCHUpdate ML Backend
      • POSTRequest Interactive Annotation
      • POST✨ Create predictions for all tasks
      • POSTTrain
      • GETGet model versions
LogoLogo
EnterpriseQuick Start
API ReferenceML

Remove ML Backend

DELETE
http://localhost:8000/api/ml/:id
DELETE
/api/ml/:id
$curl -X DELETE http://localhost:8000/api/ml/1 \
> -H "Authorization: Token <api_key>"
Remove an existing ML backend connection by ID. For example, use the following cURL command: ```bash curl -X DELETE http://localhost:8000/api/ml/{ml_backend_ID} -H 'Authorization: Token abc123'
Was this page helpful?
Previous

Update ML Backend

Next
Built with

Remove an existing ML backend connection by ID. For example, use the following cURL command:

$curl -X DELETE http://localhost:8000/api/ml/{ml_backend_ID} -H 'Authorization: Token abc123'

Authentication

AuthorizationToken
The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example:
curl https://label-studio-host/api/projects -H “Authorization: Token [your-token]”

Path parameters

idintegerRequired