Skip to main content

Add Or Edit MultiStore for a user


ApiScope: manage.user.write
API Scope Level: ServiceSubscriberScope
Path Parameters
    user_uuid string required
Request Body required
    addDealerUuids string[]
    removeDealerUuids string[]
    homeStoreDealerUuid string
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
POST /v2/user/:user_uuid/multistore

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
user_uuid — path required
Body required
{
"addDealerUuids": [
"string"
],
"removeDealerUuids": [
"string"
],
"homeStoreDealerUuid": "string"
}
Accept
curl / cURL
curl -L -X POST '/manage/v2/user/:user_uuid/multistore' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"addDealerUuids": [
"string"
],
"removeDealerUuids": [
"string"
],
"homeStoreDealerUuid": "string"
}'