Authorizations
Path Parameters
The project ID or Slug
Response
204
No Content
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.projects.delete(project_id="invalid")
# Use the SDK ...
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.projects.delete(project_id="invalid")
# Use the SDK ...
The project ID or Slug
No Content
Was this page helpful?