GET api/Vehicles/Brands?token={token}&Sequence_id={Sequence_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
|
| Sequence_id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of brands_temp| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| name | string |
None. |
|
| image_url | string |
None. |
|
| image_path | string |
None. |
|
| sequence_id | integer |
None. |
|
| created_at | date |
None. |
|
| modified_at | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"name": "sample string 2",
"image_url": "sample string 3",
"image_path": "sample string 4",
"sequence_id": 1,
"created_at": "2025-12-05T23:43:35.2704299-04:00",
"modified_at": "2025-12-05T23:43:35.2704299-04:00"
},
{
"id": 1,
"name": "sample string 2",
"image_url": "sample string 3",
"image_path": "sample string 4",
"sequence_id": 1,
"created_at": "2025-12-05T23:43:35.2704299-04:00",
"modified_at": "2025-12-05T23:43:35.2704299-04:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfbrands_temp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MaxSalesApi.Models">
<brands_temp>
<created_at>2025-12-05T23:43:35.2704299-04:00</created_at>
<id>1</id>
<image_path>sample string 4</image_path>
<image_url>sample string 3</image_url>
<modified_at>2025-12-05T23:43:35.2704299-04:00</modified_at>
<name>sample string 2</name>
<sequence_id>1</sequence_id>
</brands_temp>
<brands_temp>
<created_at>2025-12-05T23:43:35.2704299-04:00</created_at>
<id>1</id>
<image_path>sample string 4</image_path>
<image_url>sample string 3</image_url>
<modified_at>2025-12-05T23:43:35.2704299-04:00</modified_at>
<name>sample string 2</name>
<sequence_id>1</sequence_id>
</brands_temp>
</ArrayOfbrands_temp>