Register a tariff change for a legacy tariff
POST/legacy-tariff-change/
v2
POST
relocation-create-legacy-tariff-change
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{"pAccount":"string","targetTariff":"string"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/legacy-tariff-change
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.relocation.createLegacyTariffChange({
"data": {
"pAccount": "string",
"targetTariff": "string"
}
});
assertStatus(response, 201);
use \Mittwald\ApiClient\Generated\V2\Clients\Relocation\CreateLegacyTariffChange\CreateLegacyTariffChangeRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Relocation\CreateLegacyTariffChange\CreateLegacyTariffChangeRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// CreateLegacyTariffChangeRequestBody to learn how to construct a valid instance
$body = new CreateLegacyTariffChangeRequestBody(/* TODO: ... */);
$request = (new CreateLegacyTariffChangeRequest(
body: $body
));
$response = $client->relocation()->createLegacyTariffChange($request);
var_dump($response->getBody();