For the complete documentation index, see llms.txt. This page is also available as Markdown.

List Invites

List every pending invite for the workspace.

Invites that have already been accepted no longer appear here — they show up in GET /workspaces/{workspace_id}/members instead.

get
/workspaces/{workspace_id}/invites
Authorizations
AuthorizationstringRequired

A Personal Access Token (PAT).

Path parameters
workspace_idstringRequired
Responses
200

Successful Response

application/json
get/workspaces/{workspace_id}/invites
curl -L https://api-external.zenlytic.com/api/v2/workspaces/<workspace_id>/invites \
  -H 'Authorization: Bearer YOUR_TOKEN'
{
  "data": [
    {
      "id": "invite_123",
      "workspace_id": "ws_456",
      "email": "ada@acme.com",
      "role": "explore",
      "invite_url": "https://app.zenlytic.com/join-workspace/invite_123?shopName=acme",
      "created_date": "2026-01-01T00:00:00Z"
    }
  ],
  "meta": {
    "status": "success",
    "errors": [],
    "warnings": []
  }
}

Last updated

Was this helpful?