Command for sending raw requests to the MySkoda API.

raw_request(ctx, path, vin, method) async

Send a raw authenticated request to the MySkoda API.

PATH is the API path, e.g. /v2/garage or /v1/charging/{vin}/set-charging-current. The base URL (https://mysmob.api.connect.skoda-auto.cz/api) is prepended automatically.

JSON data can be piped via stdin; when data is present the method defaults to POST.

Examples:

 myskoda [...] raw-request /v2/garage echo '{"chargingCurrent": 20}' | myskoda [...] raw-request --vin TMBJB9NY \ '/v1/charging/{vin}/set-charging-current'