Im using this code to get the users but im having error "User is not a member of this workspace" what could be the reason ?
payload = {
"project_id": PROJECT_ID,
"page": "0",
"include_all_users": "true"
}
headers = {
"accept": "application/json",
"content-type": "application/x-www-form-urlencoded"
}
response = requests.post(
url,
data=payload,
headers=headers,
auth=HTTPBasicAuth(SERVICE_ACCOUNT_USERNAME, SERVICE_ACCOUNT_SECRET)
)