skills/get-organization-invite/SKILL.md
# Get Organization Invite Retrieve detailed information about a specific organization invitation by its invite ID. ## API Details - **API**: Anthropic Administrative API - **Method**: GET - **Path**: `/organizations/invites/{invite_id}` - **Operation ID**: `getOrganizationInvite` - **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/invites/{invite_id}`
npx skillsauth add naftiko/anthropic-sandbox skills/get-organization-inviteInstall 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 detailed information about a specific organization invitation by its invite ID.
/organizations/invites/{invite_id}getOrganizationInviteMock server URL: http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/invites/{invite_id}
anthropic-version: 2023-06-01x-api-key: {admin-api-key}| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| invite_id | string | Yes | Unique identifier of the invite |
curl -X GET "http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/invites/invite_01XWRAFVJwHk3PNPkuoXwvFD" \
-H "anthropic-version: 2023-06-01" \
-H "x-api-key: your-admin-api-key"
{
"id": "invite_01XWRAFVJwHk3PNPkuoXwvFD",
"type": "invite",
"email": "[email protected]",
"role": "user",
"status": "pending",
"expires_at": "2024-12-31T23:59:59Z"
}
When the user asks to get or view a specific organization invite by ID, use this operation by making a GET request to /organizations/invites/{invite_id}. Replace {invite_id} with the actual invite identifier.
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