Update user data in a tenant with the Anaplan Financial Consolidation API. Build integrations that enable user management.
Update a user's information, such as their email, or enable/disable them from the tenant. Use this feature to maintain user details or change their assigned roles. This way, user information remains accurate and up-to-date.
The body of this request contains the updated user information.
Method and endpoint
/users
Curl example
curl --location --request PUT 'https://fluenceapi-prod.fluence.app/api/v2305.1/users' \
--header 'TENANT: CustomerTenant' \
--header 'Content-Type: application/json' \
--header 'X-API-TOKEN: 73ca5973-ce3e-4cc6-b2d4-b09a99770ccf' \
--data-raw '{
"userName": "asmythe@fluence.app",
"fullName": "Adam Smythe",
"isDisabled": false,
"email": "asmythe@acme.com",
"roles": [
"Admin",
"Preparer"
]
}'
Response
A successful update action results in a 200 OK
, and the response echoes the updated user information.
{
"userId": 4413,
"userName": "asmythe@fluence.app",
"fullName": "Adam Smythe",
"isDisabled": false,
"email": "asmythe@acme.com",
"roles": [
"Admin",
"Preparer"
]
}