Services can be outsourced to other providers. An operator at a partnered provider will execute the service on the vehicle for you when a service is outsourced. Different outsource applications represent the potential options available at partnered providers and include pricing details.
provider_id | string <uuid> The identifier of the provider of this outsource application. | ||||
product_id | string <uuid> The identifier of the product of this outsource application. | ||||
vehicle_model_id | integer The identifier of the vehicle model of this outsource application. | ||||
object (Money) The discount that applies to this product for this vehicle model when outsourcing to this provider. | |||||
| |||||
object (Money) The gross price to pay to the provider when outsourcing this product for this vehicle model to this provider. | |||||
| |||||
object (Money) The original equipment service fee to pay to the provider when outsourcing this product for this vehicle model to this provider. | |||||
| |||||
updated_at | string or null <date-time> Date and time of last update. |
{- "provider_id": "fe3d49af-4061-436b-ae60-f7044f252a44",
- "product_id": "0d012afa-f885-4e65-aeca-37e27701e2d1",
- "vehicle_model_id": 0,
- "discount": {
- "amount": 0,
- "currency": "EUR"
}, - "gross_price": {
- "amount": 0,
- "currency": "EUR"
}, - "original_equipment_service_fee": {
- "amount": 0,
- "currency": "EUR"
}, - "updated_at": "2019-08-24T14:15:22Z"
}
Retrieve a list of available outsource applications. Provide additional filters to retrieve the possible outsource applications to one or more providers, a product or a vehicle model. Combinations of these filters are also possible.
Successful response.
An error occurred - see status code and problem response for more information.
{- "query": {
- "limit": 25,
- "offset": 0
}, - "result": [
- {
- "provider_id": "fe3d49af-4061-436b-ae60-f7044f252a44",
- "product_id": "0d012afa-f885-4e65-aeca-37e27701e2d1",
- "vehicle_model_id": 0,
- "discount": {
- "amount": 0,
- "currency": "EUR"
}, - "gross_price": {
- "amount": 0,
- "currency": "EUR"
}, - "original_equipment_service_fee": {
- "amount": 0,
- "currency": "EUR"
}, - "updated_at": "2019-08-24T14:15:22Z"
}
], - "total": 3255
}
Retrieve a single outsource application by its identifier.
provider-id required | string The identifier of the provider for which you want to retrieve the outsource application. |
product-id required | string <uuid> The identifier of the product for which to retrieve the outsource application. |
vehicle-model-id required | integer <int64> The identifier of the vehicle model for which to retrieve the outsource application. |
Successful response.
provider_id | string <uuid> The identifier of the provider of this outsource application. |
product_id | string <uuid> The identifier of the product of this outsource application. |
vehicle_model_id | integer The identifier of the vehicle model of this outsource application. |
object (Money) The discount that applies to this product for this vehicle model when outsourcing to this provider. | |
object (Money) The gross price to pay to the provider when outsourcing this product for this vehicle model to this provider. | |
object (Money) The original equipment service fee to pay to the provider when outsourcing this product for this vehicle model to this provider. | |
updated_at | string or null <date-time> Date and time of last update. |
An error occurred - see status code and problem response for more information.
{- "provider_id": "fe3d49af-4061-436b-ae60-f7044f252a44",
- "product_id": "0d012afa-f885-4e65-aeca-37e27701e2d1",
- "vehicle_model_id": 0,
- "discount": {
- "amount": 0,
- "currency": "EUR"
}, - "gross_price": {
- "amount": 0,
- "currency": "EUR"
}, - "original_equipment_service_fee": {
- "amount": 0,
- "currency": "EUR"
}, - "updated_at": "2019-08-24T14:15:22Z"
}