GET /auth /users

By using GET /auth /users API, you can send the user a new registration code. The previous registration code will be marked invalid. If the user has already completed their registration no action will be taken.

Authentication
Organization User (CustomerEmployee)

Service Account

Required Permissions
Auth:Users:Read: Always required.
Authorizations
Bearer Token: To authenticate API requests.
Query Parameters

limit: Required range: 0 < x <= 200

paginationToken: Minimum length: 1

kind

Request body
{
curl --request GET \
  --url https://api.digitalassets.ibm.com/auth/users \
  --header 'Authorization: Bearer <token>'
}'
Response
200: Success
{
  "items": [
    {
      "username": "<string>",
      "name": "<string>",
      "userId": "us-6b58p-r53sr-rlrd3l5cj3uc4ome",
      "kind": "AccountUser",
      "credentialUuid": "<string>",
      "orgId": "<string>",
      "isActive": true,
      "isServiceAccount": true,
      "isRegistered": true,
      "isSSORequired": true,
      "permissionAssignments": [
        {
          "permissionName": "<string>",
          "permissionId": "<string>",
          "assignmentId": "<string>",
          "operations": [
            "<string>"
          ]
        }
      ],
      "permissions": [
        "<string>"
      ]
    }
  ],
  "nextPageToken": "<string>"
}