Passo Developers
Api

List a workspace's invites

GET
/workspaces/{workspaceId}/invites

Returns the workspace's invites, newest first. Optional status filters to one of pending, accepted, expired, revoked. total is the row count.

Authorization

AuthorizationBearer <token>

A Supabase-issued OAuth user access token. On collection endpoints, pair with a Passo-Workspace header to pick a workspace.

In: header

Path Parameters

workspaceId*string
Formatuuid

Query Parameters

status?string

Value in

  • "pending"
  • "accepted"
  • "expired"
  • "revoked"

Response Body

application/json

curl -X GET "https://example.com/workspaces/497f6eca-6276-4993-bfeb-53cbbbba6f08/invites"
{  "invites": [    {      "id": "string",      "email": "string",      "role": "viewer",      "department": "marketing",      "status": "pending",      "createdAt": "string",      "expiresAt": "string",      "reminderSentAt": "string"    }  ],  "total": -9007199254740991}