# Getting user profiles Admin only

To get the profiles of a user, use the following endpoint:

GET /api/user/{userID}/profiles

With {userID} being the ID of the user to get the profiles of.

On success the response will be the default API response with the data being a data array of profiles.

[
    {
        "serial": "string",
        "name": "string",
        "revokeReason": null,
        "revokeTime": null,
        "creationTime": "2023-12-15T15:30:52.768Z",
        "expirationTime": "2023-12-15T15:30:52.768Z",
        "authable": true,
        "lastLogin": "2023-12-15T15:30:52.768Z",
        "deviceType": "string",
        "owner": "string"
    }
]