このリクエストを使用して、Anaplan Financial Consolidation のテナント内のユーザーのリストを取得します。

このリクエストには追加のパラメーターや本文はなく、ユーザー名、名と姓、メール アドレス、ユーザー アカウントのステータス、Financial Consolidation 内のユーザー ロールなどのユーザー情報を詳述するキーと値のペアのリストを返します。 

GET

/users

このリクエストでは、Financial Consolidation の「CustomerTenant」テナントのユーザーのリストを取得します。

curl --location 'https://fluenceapi-prod.fluence.app/api/v2305.1/users' \

--header 'TENANT:CustomerTenant' \

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

[

    {

        "userId":3,

        "userName": "jdoe@fluence.app",

        "fullName":"Jane Doe",

        "isDisabled": false,

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

        "roles": [

            "Admin",

            "Controller",

            "Preparer"

        ]

    },

    {

        "userId":164,

        "userName": "jbay@fluence.app",

        "fullName":"James Bay",

        "isDisabled": false,

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

        "roles": [

            "Admin",

            "Controller",

            "Preparer",

            "Reviewer",

            "Cash Team",

            "Reporting Manager",

            "Accounting Manager",

            "Consolidation Workflow"

        ]

    },

    {

        "userId":208,

        "userName": "ttesfaye@fluence.app",

        "fullName":"Teddy Tesfaye",

        "isDisabled": false,

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

        "roles": [

            "Admin"

        ]

    },

    {

        "userId":235,

        "userName": "hkovacs@fluence.app",

        "fullName":"Hanna Kovacs",

        "isDisabled": false,

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

        "roles": [

            "Admin",

            "Controller"

        ]

    }

]