Skip to main content
DELETE
/
endpoints
/
{endpointId}
# Docs for v1 can be found by changing the above selector ^
from together import Together
import os

client = Together(
    api_key=os.environ.get("TOGETHER_API_KEY"),
)

endpoint = client.endpoints.delete("endpoint-id")

print(endpoint)
{
  "error": {
    "message": "<string>",
    "type": "<string>",
    "param": null,
    "code": null
  }
}

Authorizations

Authorization
string
header
default:default
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

endpointId
string
required

The ID of the endpoint to delete

Example:

"endpoint-d23901de-ef8f-44bf-b3e7-de9c1ca8f2d7"

Response

No Content - Endpoint successfully deleted