Authorizations
Path Parameters
The user ID
Response
200 - application/vnd.api+json
Success
The response is of type file
.
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.teams_members.remove_member(user_id="user_GMy1DbMLqN50m")
# Use the SDK ...
{
"meta": {}
}
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.teams_members.remove_member(user_id="user_GMy1DbMLqN50m")
# Use the SDK ...
{
"meta": {}
}
The user ID
Success
The response is of type file
.
Was this page helpful?