Skip to main content
Remove a team member by user ID.

Signature

VastAI.remove_member(id: int) -> str

Parameters

id
int
required
id

Returns

str — Result from the API call.

Example

from vastai import VastAI

client = VastAI(api_key="YOUR_API_KEY")
result = client.remove_member(id=12345)
print(result)