Python
import requests url = "https://api.zentry.gg/api/v1/orgs/organizations/{org_id}/members/" headers = {"Authorization": "<api-key>"} response = requests.request("GET", url, headers=headers) print(response.text)
{ "members": [ { "user_id": "<string>", "role": "<string>" } ] }
API key authentication. Prefix your Zentry API key with 'Token '. Example: 'Token your_api_key'
Unique identifier of the organization
Successful response
List of members belonging to the organization
Show child attributes
Unique identifier of the member
Role of the member in the organization