Get all SSH users for a Project
GET/projects/ {projectId}/ ssh-users/
v2
GET
ssh-user-list-ssh-users
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/projects/string/ssh-users?limit=50
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.sshsftpUser.sshUserListSshUsers({
"projectId": "string",
"queryParameters": {
"limit": 50
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\SSHSFTPUser\SshUserListSshUsers\SshUserListSshUsersRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new SshUserListSshUsersRequest(
projectId: "string"
))
->withLimit(50);
$response = $client->sshsftpUser()->sshUserListSshUsers($request);
var_dump($response->getBody();