Add users to a tenant with the Anaplan Financial Consolidation API. Build integrations that enable user management.

You must specify the tenant in the header data, and send the new user data in the request body. The request needs no parameters.

POST

/users

This example adds a user, Adam Smith, to the Demo Sandbox tenant, with 

curl --location '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": "asmith@fluence.app",

        "fullName": "Adam Smith",

        "isdisabled": false,

        "email": "asmith@acme.com",

        "roles": [

            "Admin",

            "Controller",

            "Preparer"

            ]

    }

]'

A successful, 200 OK, request acknowledges the user creation by echoing the data sent in the body:

curl --location '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",

        "Controller",

        "Preparer"

    ]

}'