curl --request GET \
--url https://api.tusky.io/v2/environments/{environmentId}/members{
"data": [
{
"id": "<string>",
"address": "<string>",
"role": "<string>",
"environmentId": "<string>",
"createdAt": "<string>"
}
]
}curl --request GET \
--url https://api.tusky.io/v2/environments/{environmentId}/members{
"data": [
{
"id": "<string>",
"address": "<string>",
"role": "<string>",
"environmentId": "<string>",
"createdAt": "<string>"
}
]
}Show Member object properties
curl https://api.tusky.io/v2/environments/env_abc123def456/members \
-H "Api-Key: YOUR_API_KEY"
{
"data": [
{
"id": "member_owner_001",
"address": "0xowner1234567890abcdef1234567890abcdef12",
"role": "admin",
"environmentId": "env_abc123def456",
"createdAt": "2025-07-01T12:00:00.000Z"
},
{
"id": "member_stu901vwx234",
"address": "0x1a2b3c4d5e6f7890abcdef1234567890abcdef12",
"role": "manager",
"environmentId": "env_abc123def456",
"createdAt": "2025-07-02T10:00:00.000Z"
}
]
}