skills/list-organization-members/SKILL.md
# List Organization Members Retrieve a paginated list of all users associated with the organization, with optional filtering by email address. ## API Details - **API**: Anthropic Administrative API - **Method**: GET - **Path**: `/organizations/users` - **Operation ID**: `listOrganizationMembers` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/users`
npx skillsauth add naftiko/anthropic-sandbox skills/list-organization-membersInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Retrieve a paginated list of all users associated with the organization, with optional filtering by email address.
/organizations/userslistOrganizationMembersMock server URL: http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/users
anthropic-version: 2023-06-01x-api-key: {admin-api-key}| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| limit | integer | No | Items per page (1-1000, default 20) |
| before_id | string | No | Cursor for previous page |
| after_id | string | No | Cursor for next page |
| email | string | No | Filter by user email address |
curl -X GET "http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/users?limit=20" \
-H "anthropic-version: 2023-06-01" \
-H "x-api-key: your-admin-api-key"
{
"data": [
{
"id": "user_01WCz1FkmYMm4gnmyk7nteBY",
"type": "user",
"email": "[email protected]",
"name": "Jane Smith",
"role": "admin"
}
],
"first_id": "user_01WCz1FkmYMm4gnmyk7nteBY",
"has_more": false,
"last_id": "user_01WCz1FkmYMm4gnmyk7nteBY"
}
When the user asks to list or view organization members or users, use this operation by making a GET request to /organizations/users. Support pagination using before_id/after_id cursors and filtering by email if specified.
development
# Update Workspace Update the name or display color of an existing workspace. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/workspaces/{workspace_id}` - **Operation ID**: `updateWorkspace` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/workspaces/{workspace_id}` ## Required Headers - `anthro
development
# Update Workspace Member Update the workspace role of a specific member within a workspace. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/workspaces/{workspace_id}/members/{user_id}` - **Operation ID**: `updateWorkspaceMember` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/workspaces/{workspa
development
# Update Organization Member Update the role or other attributes of a specific user within the organization. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/users/{user_id}` - **Operation ID**: `updateOrganizationMember` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/users/{user_id}` ## Require
development
# Update API Key Update the name or status of an existing API key. Can be used to activate or deactivate a key. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/api_keys/{api_key_id}` - **Operation ID**: `updateApiKey` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/api_keys/{api_key_id}` ## Requ