Update an existing ApiToken
PUT/signup/ token/ api/ {apiTokenId}/
v2
PUT
deprecated-user-edit-api-token
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X PUT \
-d '{"description":"Api Token for ...","expiresAt":"2024-11-08T18:11:52.164Z"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/signup/token/api/f0f86186-0a5a-45b2-aa33-502777496347
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.deprecatedUserEditApiToken({
"apiTokenId": "f0f86186-0a5a-45b2-aa33-502777496347",
"data": {
"description": "Api Token for ...",
"expiresAt": "2024-11-08T18:11:52.163Z"
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\User\DeprecatedUserEditApiToken\DeprecatedUserEditApiTokenRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\User\DeprecatedUserEditApiToken\DeprecatedUserEditApiTokenRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// DeprecatedUserEditApiTokenRequestBody to learn how to construct a valid instance
$body = new DeprecatedUserEditApiTokenRequestBody(/* TODO: ... */);
$request = (new DeprecatedUserEditApiTokenRequest(
apiTokenId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->user()->deprecatedUserEditApiToken($request);
var_dump($response->getBody();