Request a new avatar image upload
POST/users/ {userId}/ avatar/
v2
POST
user-request-avatar-upload
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/users/string/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.user.requestAvatarUpload({
"userId": "string",
"data": {}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\User\RequestAvatarUpload\RequestAvatarUploadRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\User\RequestAvatarUpload\RequestAvatarUploadRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// RequestAvatarUploadRequestBody to learn how to construct a valid instance
$body = new RequestAvatarUploadRequestBody(/* TODO: ... */);
$request = (new RequestAvatarUploadRequest(
userId: "string",
body: $body
));
$response = $client->user()->requestAvatarUpload($request);
var_dump($response->getBody();