Retrieve all workspaces the current user has access to across all organizations.
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": []
}
Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.
Workspace memberships retrieved successfully
The response is of type object
.
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": []
}