Mercedes Benz Configurator
Mercedes Benz Configurator is an API for configuring Mercedes-Benz vehicles by model, trim, options, colors, and related configuration choices.
- Base URL:
https://api.mercedes-benz.com/configurator_tryout/v1 - Auth:
bearer(pass your key via theapiKeyinput)
Operations
marketsget— GET /markets — Get all available markets.marketget— GET /markets/{marketId} — Get the market with the given marketId.bodiesget— GET /markets/{marketId}/bodies — Get all available bodies for the given marketId.bodyget— GET /markets/{marketId}/bodies/{bodyId} — Get the body for the given marketId and bodyId.classesget— GET /markets/{marketId}/classes — Get all available classes for the given marketId.classget— GET /markets/{marketId}/classes/{classId} — Get the class for the given marketId and classId.
Inputs
apiKey— your mercedes-benz-configurator API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: marketsget
apiKey: <your key>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: marketsget, marketget, bodiesget, bodyget, classesget, classget |
bodyId |
string | no | — | Path parameter bodyId (required by some operations). |
classId |
string | no | — | Path parameter classId (required by some operations). |
marketId |
string | no | — | Path parameter marketId (required by some operations). |
query |
string | no | — | Query-string parameters as a JSON object string, e.g. {"limit": 50}. Parsed and url-encoded onto the request. |