Returns list of all parts donor_makes in category.
GET: https://www.autovit.ro/api/open/categories/:category_id/donor_makes
Permission: read
Header
| Field | Type | Description |
|---|---|---|
| User-Agent | string | Account email. |
Parameter
| Field | Type | Description |
|---|---|---|
| id | Number | Category Id. Category unique ID. |
| category_id | Number | Category Id. Category unique ID |
| page | Number | Optional parameter. Allows requesting specific page results |
| limit | Number | Optional parameter. Allows limitation results for one request |
Example request
HTTP/1.1 GET /categories/29/donor_makes
User-Agent: $USER_EMAIL
Content-Type: application/json
Authorization: Bearer $ACCESS_TOKEN
Copied to clipboard
Success response
HTTP/1.1 200 OK
{
"options": {
"acura": {
"ro": "Acura",
"en": "Acura"
},
"aixam": {
"ro": "Aixam",
"en": "Aixam"
},
"alfa-romeo": {
"ro": "Alfa Romeo",
"en": "Alfa Romeo"
},
"aro": {
"ro": "Aro",
"en": "Aro"
},
"asia": {
"ro": "Asia",
"en": "Asia"
},
...
}
}
Copied to clipboard