SoulFire LogoSoulFire

List users

Lists all users in the system.

GET
/v1/users

Lists all users in the system.

Authorization

AuthorizationBearer <token>

Preferred API authentication. Use a JWT with the api audience.

In: header

Response Body

application/json

application/json

application/json

application/json

curl -X GET "http://127.0.0.1:38765/v1/users"
{  "users": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "username": "string",      "role": "ADMIN",      "email": "user@example.com",      "created_at": {        "seconds": 0,        "nanos": 0      },      "updated_at": {        "seconds": 0,        "nanos": 0      },      "last_login_at": {        "seconds": 0,        "nanos": 0      },      "min_issued_at": {        "seconds": 0,        "nanos": 0      }    }  ]}

How is this page?