How to List Current User Roles

Updated on 08 April, 2026

List all roles assigned to the currently authenticated user in Vultr IAM. View your own role assignments and inherited policy permissions through the IAM API.


Listing the current user's roles shows all roles assigned to the authenticated user, including directly assigned roles and those inherited through groups. This is useful for understanding your own access level and the permissions available to you.

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

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

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

The response contains the requested resources.

Comments