List Users for an Organization

get

/api/v2/organizations/{id}/users/

Make a GET request to this resource to retrieve a list of users associated with the selected organization.

The resulting data structure contains:

{
    "count": 99,
    "next": null,
    "previous": null,
    "results": [
        ...
    ]
}

The count field indicates the total number of users found for the given query. The next and previous fields provides links to additional results if there are more than will fit on a single page. The results list contains zero or more user records.

Results

Each user data structure includes the following fields:

  • id: Database ID for this user. (integer)
  • type: Data type for this user. (choice)
  • url: URL for this user. (string)
  • related: Data structure with URLs of related resources. (object)
  • summary_fields: Data structure with name/description for related resources. The output for some objects may be limited for performance reasons. (object)
  • created: Timestamp when this user was created. (datetime)
  • modified: Timestamp when this user was last modified. (datetime)
  • username: Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. (string)
  • first_name: (string)
  • last_name: (string)
  • email: (string)
  • is_superuser: Designates that this user has all permissions without explicitly assigning them. (boolean)
  • is_system_auditor: (boolean)

  • ldap_dn: (string)

  • last_login: (datetime)
  • external_account: Set if the account is managed by an external service (field)

Sorting

To specify that users are returned in a particular order, use the order_by query string parameter on the GET request.

?order_by=username

Prefix the field name with a dash - to sort in reverse:

?order_by=-username

Multiple sorting fields may be specified by separating the field names with a comma ,:

?order_by=username,some_other_field

Pagination

Use the page_size query string parameter to change the number of results returned for each request. Use the page query string parameter to retrieve a particular page of results.

?page_size=100&page=2

The previous and next links returned with the results will set these query string parameters automatically.

Searching

Use the search query string parameter to perform a case-insensitive search within all designated text fields of a model.

?search=findme

(Added in Oracle Linux Automation Manaer) Search across related fields:

?related__search=findme

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Body
Example Response (application/json)
{
    "count":"2",
    "next":null,
    "previous":null,
    "results":[
        {
            "auth":[
            ],
            "created":"2018-02-01T08:00:00.000000Z",
            "email":"",
            "external_account":null,
            "first_name":"",
            "id":"2",
            "is_superuser":false,
            "is_system_auditor":false,
            "last_login":null,
            "last_name":"",
            "ldap_dn":"",
            "modified":null,
            "related":{
                "access_list":"/api/v2/users/2/access_list/",
                "activity_stream":"/api/v2/users/2/activity_stream/",
                "admin_of_organizations":"/api/v2/users/2/admin_of_organizations/",
                "authorized_tokens":"/api/v2/users/2/authorized_tokens/",
                "credentials":"/api/v2/users/2/credentials/",
                "organizations":"/api/v2/users/2/organizations/",
                "personal_tokens":"/api/v2/users/2/personal_tokens/",
                "projects":"/api/v2/users/2/projects/",
                "roles":"/api/v2/users/2/roles/",
                "teams":"/api/v2/users/2/teams/",
                "tokens":"/api/v2/users/2/tokens/"
            },
            "summary_fields":{
                "user_capabilities":{
                    "delete":false,
                    "edit":false
                }
            },
            "type":"user",
            "url":"/api/v2/users/2/",
            "username":"alice"
        },
        {
            "auth":[
            ],
            "created":"2018-02-01T08:00:00.000000Z",
            "email":"",
            "external_account":null,
            "first_name":"",
            "id":"3",
            "is_superuser":false,
            "is_system_auditor":false,
            "last_login":null,
            "last_name":"",
            "ldap_dn":"",
            "modified":null,
            "related":{
                "access_list":"/api/v2/users/3/access_list/",
                "activity_stream":"/api/v2/users/3/activity_stream/",
                "admin_of_organizations":"/api/v2/users/3/admin_of_organizations/",
                "authorized_tokens":"/api/v2/users/3/authorized_tokens/",
                "credentials":"/api/v2/users/3/credentials/",
                "organizations":"/api/v2/users/3/organizations/",
                "personal_tokens":"/api/v2/users/3/personal_tokens/",
                "projects":"/api/v2/users/3/projects/",
                "roles":"/api/v2/users/3/roles/",
                "teams":"/api/v2/users/3/teams/",
                "tokens":"/api/v2/users/3/tokens/"
            },
            "summary_fields":{
                "user_capabilities":{
                    "delete":false,
                    "edit":true
                }
            },
            "type":"user",
            "url":"/api/v2/users/3/",
            "username":"bob"
        }
    ]
}
Back to Top