GET apiassetoauth/driive/groupvehiclecheckschemas
Get the vehicle check schemas your asset has access to
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A GroupVehicleCheckSchemaResponse
GroupVehicleCheckSchemaResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| GroupVehicleChecks |
A collection of scehams the asset can use |
Collection of GroupVehicleCheckSchema |
None. |
Response Formats
application/json, text/json
Sample:
{
"GroupVehicleChecks": [
{
"SchemaId": 1,
"SchemaName": "sample string 2",
"AutoPopulate": true
},
{
"SchemaId": 1,
"SchemaName": "sample string 2",
"AutoPopulate": true
}
]
}
application/xml, text/xml
Sample:
<GroupVehicleCheckSchemaResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<GroupVehicleChecks>
<GroupVehicleCheckSchema>
<SchemaId>1</SchemaId>
<SchemaName>sample string 2</SchemaName>
<AutoPopulate>true</AutoPopulate>
</GroupVehicleCheckSchema>
<GroupVehicleCheckSchema>
<SchemaId>1</SchemaId>
<SchemaName>sample string 2</SchemaName>
<AutoPopulate>true</AutoPopulate>
</GroupVehicleCheckSchema>
</GroupVehicleChecks>
</GroupVehicleCheckSchemaResponse>