Get your account information
GET/users/ self/ personal-information/
v2
GET
user-get-own-account
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-d '{}' \
-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.getOwnAccount({
"data": {}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\User\GetOwnAccount\GetOwnAccountRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\User\GetOwnAccount\GetOwnAccountRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// GetOwnAccountRequestBody to learn how to construct a valid instance
$body = new GetOwnAccountRequestBody(/* TODO: ... */);
$request = (new GetOwnAccountRequest(
body: $body
));
$response = $client->user()->getOwnAccount($request);
var_dump($response->getBody();