Services represent applicable products to specific vehicle models and contain pricing details for specified customer scenarios.
A service represents a product that is applicable to a specific vehicle model and carries pricing information for its execution. Services are only available for selection when they have been configured as enabled in the corresponding product catalog Application.
product_id | string <uuid> The identifier of the product of this service. | ||||
vehicle_model_id | integer The identifier of the vehicle model of this service. | ||||
object (Money) The discount a customer receives for this application, based on the default price list code of its branding profile or provided price list code. | |||||
| |||||
object (Money) The gross price that a customer needs to pay for this application, based on the provided or default branding profile. | |||||
| |||||
operator_only | boolean Whether the application is only available for an operator. | ||||
object (Money) The original equipment service fee a customer has to pay for this application. | |||||
|
{- "product_id": "0d012afa-f885-4e65-aeca-37e27701e2d1",
- "vehicle_model_id": 0,
- "discount": {
- "amount": 0,
- "currency": "EUR"
}, - "gross_price": {
- "amount": 0,
- "currency": "EUR"
}, - "operator_only": true,
- "original_equipment_service_fee": {
- "amount": 0,
- "currency": "EUR"
}
}
Retrieve a list of available services. Provide additional filters to retrieve them for a specific product or a vehicle model. Provide a price list code and/or branding profile to retrieve pricing details for specific customer scenarios.
Successful response.
An error occurred - see status code and problem response for more information.
{- "query": {
- "limit": 25
}, - "result": [
- {
- "product_id": "0d012afa-f885-4e65-aeca-37e27701e2d1",
- "vehicle_model_id": 0,
- "discount": {
- "amount": 0,
- "currency": "EUR"
}, - "gross_price": {
- "amount": 0,
- "currency": "EUR"
}, - "operator_only": true,
- "original_equipment_service_fee": {
- "amount": 0,
- "currency": "EUR"
}
}
], - "total": 4
}