Admin API -Get Members

Can someone send me the updated documentation on Admin API | Cursor Docs

The current json response also provided a field called isRemoved and user_id. There is no documentation on the site about what “isRemoved” means?

i believe isRemoved is a soft delete flag for membership record, meaning the user used to be on the team, now they’re not. AKA if you only wanted current seats, filter on isRemoved === false

user_id is Cursor’s internal identifier for the user. safe to ignore

i’ll verify this with the team internally, though! and mention that these would be good to add to the docs

1 Like

hi @Koyeli_Roy and thank you for your post, great find!

The Admin API’s /teams/members endpoint includes a field called isRemoved which indicates the membership status of each user.

If isRemoved is false , the user is an active member of the team.

If isRemoved is true , the user has been removed from the team but may still appear in the response for usage tracking and billing purposes.

This allows you to see both current and removed members as part of your team’s data, helping with spend attribution and management.

We will be updating our documentation to make this clearer. Let me know if you have any other questions!