GET
/
users
/
managed
curl --request GET \
  --url https://api.forestreet.com/users/managed \
  --header 'x-api-key: <api-key>'
[
    {
        "userId": "15f1e85f-6e32-4cd5-9500-65ef79adb5b0",
        "email": "john@doe.com"
    },
    {
        "userId": "bf88d004-8d85-4b86-a603-9499a2f9a8aa",
        "email": "jane@doe.com"
    }
]

List the UUIDs and emails of all the users manageable by this account. The account is always determined by the API key being used.

[
    {
        "userId": "15f1e85f-6e32-4cd5-9500-65ef79adb5b0",
        "email": "john@doe.com"
    },
    {
        "userId": "bf88d004-8d85-4b86-a603-9499a2f9a8aa",
        "email": "jane@doe.com"
    }
]