DELETE
/
endpoints
/
{endpointId}
from together import Together
import os

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

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

print(endpoint)
This response does not have an example.

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

Response

204

No Content - Endpoint successfully deleted