Product prerequisites are essential checks or conditions that must be fulfilled before a ticket associated with a specific product can be created. These prerequisites may vary depending on the vehicle.
A product prerequisite is a mandatory condition or requirement that must be fulfilled before a ticket can be created. These prerequisites may vary depending on the specific product and vehicle combination.
id | integer Identifier of the product prerequisite. | ||||||||
description | string The description of the product prerequisite. | ||||||||
name | string The name of the product prerequisite. | ||||||||
question | string The question of prerequisite check. | ||||||||
required | boolean True if the answer on the prerequisite is required. | ||||||||
type | string Type of the prerequisite.
|
{- "id": 0,
- "description": "Check for battery",
- "name": "Battery charger",
- "question": "Did you secure the vehicle's power supply?",
- "required": true,
- "type": "boolean"
}
Retrieve a list of prerequisites for one or more products. Prerequisites may vary depending on the vehicle.
Successful response.
An error occurred - see status code and problem response for more information.
{- "query": {
- "limit": 25,
- "offset": 0
}, - "result": [
- {
- "id": 0,
- "description": "Check for battery",
- "name": "Battery charger",
- "question": "Did you secure the vehicle's power supply?",
- "required": true,
- "type": "boolean"
}
], - "total": 3255
}