Skip to main content
GET
/
auth
/
users
List Users
curl --request GET \
  --url https://api.dfns.io/auth/users \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "username": "<string>",
      "name": "<string>",
      "userId": "us-6b58p-r53sr-rlrd3l5cj3uc4ome",
      "kind": "CustomerEmployee",
      "credentialUuid": "<string>",
      "orgId": "<string>",
      "permissions": [
        "<string>"
      ],
      "isActive": true,
      "isServiceAccount": true,
      "isRegistered": true,
      "isSSORequired": true,
      "permissionAssignments": [
        {
          "permissionName": "<string>",
          "permissionId": "<string>",
          "assignmentId": "<string>",
          "operations": [
            "<string>"
          ]
        }
      ]
    }
  ],
  "nextPageToken": "<string>"
}

Authentication

✅ Organization User (CustomerEmployee)
❌ Delegated User (EndUser)
✅ Service Account

Required Permissions

Auth:Users:Read: Always required.

Authorizations

Authorization
string
header
required

Bearer Token: Used to authenticate API requests. More details how to generate the token: Authentication flows

Query Parameters

limit
integer
Required range: 0 < x <= 200
paginationToken
string
Minimum length: 1
kind
enum<string>
Available options:
CustomerEmployee,
EndUser

Response

200 - application/json

Success

items
object[]
required
nextPageToken
string
I