Update your account information
PUT/users/ self/ personal-information/
v2
PUT
user-update-account
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X PUT \
-d '{"person":{"firstName":"Ada","lastName":"Lovelace","title":"mr"}}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/users/self/personal-information
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.updateAccount({
"data": {
"person": {
"firstName": "Ada",
"lastName": "Lovelace",
"title": "mr"
}
}
});
assertStatus(response, 204);
use \Mittwald\ApiClient\Generated\V2\Clients\User\UpdateAccount\UpdateAccountRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\User\UpdateAccount\UpdateAccountRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// UpdateAccountRequestBody to learn how to construct a valid instance
$body = new UpdateAccountRequestBody(/* TODO: ... */);
$request = (new UpdateAccountRequest(
body: $body
));
$response = $client->user()->updateAccount($request);
var_dump($response->getBody();