Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • A api
  • Project information
    • Project information
    • Activity
    • Members
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Container Registry
    • Infrastructure Registry
  • Wiki
    • Wiki
  • Activity
Collapse sidebar
  • ironapi
  • api
  • Wiki
  • Api
  • User Administration

User Administration · Changes

Page history
Update User Administration authored Nov 11, 2021 by Andrea Pavlovic's avatar Andrea Pavlovic
Show whitespace changes
Inline Side-by-side
API/User-Administration.md 0 → 100644
View page @ fd1ed873
[[_TOC_]]
# Listing Users
POST /data/system/client/query
# Creating and Editing Users
POST /data/system/client/transitions/create
{
""
}
# Changing Passwords
See [Changing-Passwords](/API/Changing-Passwords)
# List Users with a certain agenda
POST /data/system/client/query
```
{
"conds" : {"agenda.name" : "admin"},
"attrs" : {"join":{"system__assignment__assigned_client" : "agenda"}}
}
```
or
POST /data/system/assignment/query
```
{
"conds" : {"agenda.name" : "admin"},
"attrs" : {"join":"agenda"}
}
```
or
```
{
"conds" : {"agenda.name" : "admin"},
"attrs" : {"join":"agenda", "prefetch" : "assigned_client"}
}
```
# List Users with a certain assignment
In this example, the assignment is bound on core.unit, the agenda is called "site_admin".
POST /data/assignment/core_unit/query
```
{
"conds" : {"agenda.name" : "site_admin"},
"attrs" : {"join" : "agenda"}
}
```
\ No newline at end of file
Clone repository
  • API
    • Available Endpoints
    • Changing Passwords
    • Form Input Types
    • Introduction
    • Logout
    • Plugins
    • Queries
    • Queries
      • Attributes
      • Context
      • Query Examples
      • Query Search Options
      • Referenced Instances
      • Saved Queries
    • Schema_Changes
    • Storing Files
View All Pages