Get an SSH user
GET/ssh-users/ {sshUserId}/
v2
GET
ssh-user-get-ssh-user
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/ssh-users/string
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.sshUserGetSshUser({
"sshUserId": "string"
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\SSHSFTPUser\SshUserGetSshUser\SshUserGetSshUserRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new SshUserGetSshUserRequest(
sshUserId: "string"
));
$response = $client->sshsftpUser()->sshUserGetSshUser($request);
var_dump($response->getBody();