Skip to content

List Workspace Invitations

GET/web/v1/workspaces/{workspaceBizId}/invitationsJWT

Lists all invitations for a workspace with optional filters.

Authentication

Auth Chain: WEB Chain — requires Authorization: Bearer <jwt> System-injected headers (frontend does nothing): X-PORTAL-ACCESS-CODE (Nginx), X-Request-Id (Gateway)

Request Parameters

NameTypeRequiredInDescription
workspaceBizIdStringYespathBusiness ID of the workspace
statusesArray<Integer>NoqueryFilter by invitation status codes
inviteeEmailStringNoqueryFilter by invitee email address
createdAtFromString (ISO 8601)NoqueryFilter invitations created after this timestamp (ISO 8601)
createdAtToString (ISO 8601)NoqueryFilter invitations created before this timestamp (ISO 8601)

Success Response

Success200
{
  "version": "1.3.0",
  "timestamp": 1709337600000,
  "success": true,
  "code": "2000",
  "message": "SUCCESS",
  "data": []
}

Error Responses

Unauthorized401
{
  "success": false,
  "code": "4010",
  "message": "Invalid or expired token"
}

Notes

Internal Documentation