Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl "https://api.voyantcloud.com/v1/workspaces/ws_abc/members" \ -H "Authorization: Bearer $VOYANT_API_KEY"
const res = await fetch("https://api.voyantcloud.com/v1/workspaces/ws_abc/members", { headers: { Authorization: `Bearer ${process.env.VOYANT_API_KEY}` }, }) const members = await res.json()
import os, requests resp = requests.get( "https://api.voyantcloud.com/v1/workspaces/ws_abc/members", headers={"Authorization": f"Bearer {os.environ['VOYANT_API_KEY']}"}, ) data = resp.json()
{ "data": [ { "id": "usr_123", "email": "ana@example.com", "name": "Ana Ionescu", "role": "admin" }, { "id": "usr_456", "email": "mihai@example.com", "name": "Mihai Popescu", "role": "member" } ] }
{ "error": "Failed to get workspace members" }
Return member list (id, email, name, role) for the workspace.
GET
/v1/workspaces/:id/members
workspaces:read