GET
/
me
/
workspace-memberships
Get User's Workspace Memberships
curl --request GET \
  --url https://{deploymentHost}/me/workspace-memberships
{
  "status": 200,
  "message": "",
  "data": [
    {
      "id": "ws_membership_123456789",
      "workspace": {
        "id": "workspace_987654321",
        "name": "Development Team",
        "slug": "dev-team",
        "organization": {
          "id": "org_123456789",
          "name": "Acme Corporation",
          "slug": "acme-corp"
        }
      },
      "permissions": [
        "read",
        "write"
      ],
      "created_at": "2024-01-01T00:00:00Z"
    },
    {
      "id": "ws_membership_987654321",
      "workspace": {
        "id": "workspace_456789123",
        "name": "Marketing Team",
        "slug": "marketing-team",
        "organization": {
          "id": "org_123456789",
          "name": "Acme Corporation",
          "slug": "acme-corp"
        }
      },
      "permissions": [
        "read"
      ],
      "created_at": "2024-01-05T00:00:00Z"
    }
  ],
  "session": {
    "signin_attempts": [],
    "signins": [
      {
        "id": "signin_987654321",
        "user_id": "user_456789123",
        "created_at": "2024-01-01T12:00:00Z"
      }
    ],
    "signup_attempts": [],
    "active_signin": {
      "id": "signin_987654321",
      "user_id": "user_456789123",
      "created_at": "2024-01-01T12:00:00Z"
    }
  },
  "errors": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Response

200
application/json

Workspace memberships retrieved successfully

The response is of type object.