Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The ID of the endpoint to delete
Response
No Content - Endpoint successfully deleted
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.Permanently deletes an endpoint. This action cannot be undone.
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.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the endpoint to delete
No Content - Endpoint successfully deleted
Was this page helpful?