Get a list of roles that a user is assigned. Enable or restrict users from performing specific actions in Anaplan Financial Consolidation by assigning them specific roles.

This request returns the roles of a single user. For example, you can use the response body for this request to automate the cloning of users with identical roles within your organization. Say you want a new hire to have the same roles as an existing user. You can get the list of roles from the latter, to then create that user's profile, or assign roles to an existing profile.

GET

/user/{username}/roles

ParameterDescription
{username}The Financial Consolidation app username, not the user's email address.

curl --location 'https://fluenceapi-prod.fluence.app/api/v2305.1/user/john.doe@fluence.app/roles' \

--header 'TENANT: CustomerTenant' \

--header 'X-API-TOKEN: 73ca5973-ce3e-4cc6-b2d4-b09a99770ccf'

[

    "Admin",

    "Controller",

    "Preparer",

    "Reviewer"

]