Skip to content

Latest commit

 

History

History
98 lines (78 loc) · 1.89 KB

File metadata and controls

98 lines (78 loc) · 1.89 KB
sidebar_position 29

Get user by ID

Description

Get a user's details.

URL

http://{Admin API IP}:{port#}/api/v1/users/{id}

Parameter Description/Comments
ID (string) User's ID. Can be retrieved via Get all users or Get group's users.

HTTP method

GET

Request

Headers

Example header format:

Authorization: Basic <authorization token returned from the login method>

Content-Type: application/json

Response

Response example
{
    "Id": 14,
    "Sid": "02358185-f2a7-465f-8d05-6052590896e2",
    "Username": "john m",
    "Email": "john@example.com",
    "IsActive": true,
    "IsAdmin": true,
    "GroupIds": [
        -1,
        1
    ],
    "TimeZoneInfoId": "Israel Standard Time",
    "MaxReservationDuration": 1,
    "MaxConcurrentReservations": 2,
    "MaxScheduledSandboxes": 2,
    "MaxOwnedBlueprints": 2,
    "MaxSavedSandboxes": 0,
    "DomainRoles": [
        {
            "DomainId": "dbaf480c-09f7-46d3-a2e2-e35d3e374a16",
            "role": "SystemAdmin"
        },
        {
            "DomainId": "357ff49d-4ffd-4b3e-bc07-041dd4fd0f33",
            "role": "SystemAdmin"
        },
        {
            "DomainId": "8cd12c8d-6d40-4dfd-89da-a8d8dde00575",
            "role": "SystemAdmin"
        },
        {
            "DomainId": "134b19d4-6c56-491d-b765-b61191c37f78",
            "role": "SystemAdmin"
        },
        {
            "DomainId": "dcd91805-4e1c-48a8-88c7-d9805e876783",
            "role": "SystemAdmin"
        },
        {
            "DomainId": "985c3306-fad7-4e85-a4e3-c44876149657",
            "role": "SystemAdmin"
        }
    ],
    "DomainName": null,
    "ImportedSid": null
}
Response code
200 OK