We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I submit unknown Fields to https://developer.tesla.com/docs/fleet-api/endpoints/vehicle-endpoints#fleet-telemetry-config-create
... "fields": { "ClimateKeeperModeState": { "interval_seconds": 60 }, "Experimental_1": { "interval_seconds": 60 }, "Experimental_2": { "interval_seconds": 60 } }, ...
It returns 1 bad Field at a time for each request
e.g. 400 response:
{ "response": null, "error": "Unknown field ClimateKeeperModeState", "error_description": "", "txid": <txid> }
Would it be possible to change this so that it returns all the bad Fields on the first request?
So something like this:
{ "response": ["ClimateKeeperModeState", "Experimental_1", "Experimental_2"], "error": "Unknown fields", "error_description": "", "txid": <txid> }
Thank you.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I submit unknown Fields to https://developer.tesla.com/docs/fleet-api/endpoints/vehicle-endpoints#fleet-telemetry-config-create
It returns 1 bad Field at a time for each request
e.g. 400 response:
Would it be possible to change this so that it returns all the bad Fields on the first request?
So something like this:
Thank you.
The text was updated successfully, but these errors were encountered: