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