Authorizations
Path Parameters
Response
204
No Content
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.user_data.delete_user_data(user_data_id="123")
# Use the SDK ...
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.user_data.delete_user_data(user_data_id="123")
# Use the SDK ...
No Content
Was this page helpful?