> For the complete documentation index, see [llms.txt](https://patryqhyper.gitbook.io/pterodactyl-php-sdk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://patryqhyper.gitbook.io/pterodactyl-php-sdk/api-client/server-greater-than-users.md).

# Server -> Users

$client->client->server->users

### Get users

```php
$client->client->server->users->list(string $serverIdentifier);
```

### Create user

```php
$client->client->server->users->create(string $serverIdentifier, array $data);
```

### Get user details

```php
$client->client->server->users->details(string $serverIdentifier, string $subUserUuid);
```

### Update user

```php
$client->client->server->users->update(string $serverIdentifier, string $subUserUuid, array $data);
```

### Delete user

```php
$client->client->server->users->delete(string $serverIdentifier, string $subUserUuid);
```
