Skip to main content

Update products for dealer


ApiScope: manage.dealer.write
API Scope Level: DealerScope
Path Parameters
    dealerUUID string required
Request Body required
    productsToAdd string[]
    productsToRemove string[]
    statusCallBackUrl string
    requesterUserUuid string
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
    requestUuid string
PATCH /v2/dealers/:dealerUUID/products/bulk

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
dealerUUID — path required
Body required
{
"productsToAdd": [
"string"
],
"productsToRemove": [
"string"
],
"statusCallBackUrl": "string",
"requesterUserUuid": "string"
}
Accept
curl / cURL
curl -L -X PATCH '/manage/v2/dealers/:dealerUUID/products/bulk' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"productsToAdd": [
"string"
],
"productsToRemove": [
"string"
],
"statusCallBackUrl": "string",
"requesterUserUuid": "string"
}'