How to List Current User Groups

Updated on 08 April, 2026

List all groups that the currently authenticated user belongs to in Vultr IAM. View your own group memberships and inherited permissions through the IAM API.


Listing the current user's groups shows all groups that the authenticated user belongs to. This is useful for understanding your own group memberships and the permissions you inherit through those groups.

This guide explains how to list the current user's groups using the Vultr API.

Send a GET request to the List Current User's Groups endpoint to retrieve all groups for the authenticated user.

console
$ curl "https://api.vultr.com/v2/users/me/groups" \
    -X GET \
    -H "Authorization: Bearer ${VULTR_API_KEY}"

The response contains the requested resources.

Comments