v1

latestOpenAPI 3.0.1Apache 2.02026-07-17111176225.7 KB
User Management

List accounts for the user

get/accounts/{accountname}/users

Path parameters

accountnamestring required

Response

User listing

usernamestring required

The username to authenticate with

type'native' | 'internal' | 'external'

The user's type

sourcestring

If the user is external, this is the source that the user was initialized from. All other user types have this set to null

created_atstring date-time

The timestampt the user record was created

last_updatedstring date-time

The timestamp of the last update to this record

Example response

[
  {
    "last_updated": "2000-01-23T04:56:07.000+00:00",
    "created_at": "2000-01-23T04:56:07.000+00:00",
    "source": "source",
    "type": "native",
    "username": "username"
  }
]