Request a Server avatar upload
POST/servers/ {serverId}/ avatar/
v2
POST
project-request-server-avatar-upload
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/servers/f0f86186-0a5a-45b2-aa33-502777496347/avatar
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.project.requestServerAvatarUpload({
"serverId": "f0f86186-0a5a-45b2-aa33-502777496347"
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Project\RequestServerAvatarUpload\RequestServerAvatarUploadRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new RequestServerAvatarUploadRequest(
serverId: "f0f86186-0a5a-45b2-aa33-502777496347"
));
$response = $client->project()->requestServerAvatarUpload($request);
var_dump($response->getBody();