Get Brands for uuids or Names
ApiScope: manage.brand.read
API Scope Level: ServiceSubscriberScope
application/json
Request Body required
brandUuids string[]
brandNames string[]
Responses
- 200
- 400
- 401
- 403
- 500
OK
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
brands object[]
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string",
"brands": [
{
"brandName": "string",
"brandType": "string",
"uuid": "string",
"brandLogo": "string",
"isValid": true,
"oem": {
"oemCode": "string",
"oemName": "string"
},
"motorBrandName": "string",
"motorBrandID": 0
}
]
}
Bad Request
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
Unauthorized
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
Forbidden
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
Internal Server Error
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
POST /v2/brands/searches
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/manage/v2/brands/searches' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"brandUuids": [
"string"
],
"brandNames": [
"string"
]
}'
python / requests
curl -L -X POST '/manage/v2/brands/searches' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"brandUuids": [
"string"
],
"brandNames": [
"string"
]
}'
go / native
curl -L -X POST '/manage/v2/brands/searches' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"brandUuids": [
"string"
],
"brandNames": [
"string"
]
}'
nodejs / axios
curl -L -X POST '/manage/v2/brands/searches' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"brandUuids": [
"string"
],
"brandNames": [
"string"
]
}'
ruby / Net::HTTP
curl -L -X POST '/manage/v2/brands/searches' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"brandUuids": [
"string"
],
"brandNames": [
"string"
]
}'
csharp / RestSharp
curl -L -X POST '/manage/v2/brands/searches' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"brandUuids": [
"string"
],
"brandNames": [
"string"
]
}'
php / cURL
curl -L -X POST '/manage/v2/brands/searches' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"brandUuids": [
"string"
],
"brandNames": [
"string"
]
}'
java / OkHttp
curl -L -X POST '/manage/v2/brands/searches' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"brandUuids": [
"string"
],
"brandNames": [
"string"
]
}'
powershell / RestMethod
curl -L -X POST '/manage/v2/brands/searches' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"brandUuids": [
"string"
],
"brandNames": [
"string"
]
}'