Skip to content

Listing of invited Device Users

Overview

The IED User API provides endpoints for managing users within the Industrial Edge Device. It includes operations to list users.

Server url

https://<my-ip/dns>/device/edge/b.service/api/v1

Getting the List of invited Device Users

The API returns the users created on the device. Only Admin users can use the API, and the response does not include your own user.

Endpoint

GET /users/invitedusers

Example Request

curl -X GET \
https://<my-ip/dns>/device/edge/b.service/api/v1/users/invitedusers \
-H "Authorization: <token>"

Response

{
    "data": [
        {
            "appUserId": "de4e24a0-0a9e-4149-a122-dd2836b9b35a",
            "role": "User",
            "userId": "578d7e60-57fa-4a1a-b899-5a99ec394d81",
            "firstName": "Firstname1",
            "lastName": "Lastname1",
            "emailId": "user1@company.com",
            "shareUrl": "",
            "userStatus": "approved",
            "createdDate": 1738073080000000000,
            "modifiedDate": 1738073080000000000
        },
        {
            "appUserId": "3a5f7902-6adf-4daa-90ed-35f837564089",
            "role": "Admin",
            "userId": "4301cbff-b5fb-4302-b99e-67722c849410",
            "firstName": "Firstname2",
            "lastName": "Lastname2",
            "emailId": "user2@company.com",
            "shareUrl": "",
            "userStatus": "approved",
            "createdDate": 1738073301000000000,
            "modifiedDate": 1738073301000000000
        }
    ]
}