Update operations for a dealer
This function updates operations for a dealer in a Java application.
Path Parameters
The dealerUUID
parameter in the updateOperations
method represents the unique identifier of
the dealer for whom the operations are being updated. It is extracted from the path variable in the URL.
Query Parameters
The isBulkEdit
parameter in the updateOperations
method is a boolean flag that indicates
whether the update operation is a bulk edit or not. It is a required parameter, meaning that it must be provided in
the request for the method to be executed successfully. In the method signature, it
Request Body required
The updateOperationsRequest
parameter in the updateOperations
method is of type
UpdateOperationsRequest
. It is a request object that contains the data needed to update operations for a dealer.
This object likely includes information such as the operations to be updated, the requester user UUID, and any other
- Array [
- ]
- Array [
- ]
operationDTO object
vehicleMileageConfigDTOList object[]
brandDTO object
dailyLimitConfigDTOList object[]
Possible values: [OPCODE
, SERVICEMENU
, SERVICEMOTORSMAINTENANCEMENU
, SERVICEMOTORSLINEITEM
, SERVICEMOTORSINDICATOR
]
customMenuUuidToParentQuickOpLiteUuidMap object
factoryMenuToParentQuickOpLiteUuidMap object
- 200
- 400
- 401
- 403
- 500
A ResponseEntity
containing an UpdateOperationsResponse
object is being returned.
Schema
- Array [
- ]
- Array [
- ]
errors object[]
warnings object[]
{
"errors": [
{
"errorName": "string",
"errorMessage": "string",
"errorCode": 0
}
],
"warnings": [
{
"warningCode": "string",
"warningTitle": "string",
"warningMessage": "string"
}
],
"statusCode": 0,
"apiRequestId": "string",
"customMenuUuidList": [
"string"
],
"quickOpLiteUuidList": [
"string"
],
"motorDealerOperationUuidList": [
"string"
]
}
Bad Request
Schema
- Array [
- ]
- Array [
- ]
errors object[]
warnings object[]
{
"errors": [
{
"errorName": "string",
"errorMessage": "string",
"errorCode": 0
}
],
"warnings": [
{
"warningCode": "string",
"warningTitle": "string",
"warningMessage": "string"
}
],
"statusCode": 0,
"apiRequestId": "string"
}
Unauthorized
Schema
- Array [
- ]
- Array [
- ]
errors object[]
warnings object[]
{
"errors": [
{
"errorName": "string",
"errorMessage": "string",
"errorCode": 0
}
],
"warnings": [
{
"warningCode": "string",
"warningTitle": "string",
"warningMessage": "string"
}
],
"statusCode": 0,
"apiRequestId": "string"
}
Forbidden
Schema
- Array [
- ]
- Array [
- ]
errors object[]
warnings object[]
{
"errors": [
{
"errorName": "string",
"errorMessage": "string",
"errorCode": 0
}
],
"warnings": [
{
"warningCode": "string",
"warningTitle": "string",
"warningMessage": "string"
}
],
"statusCode": 0,
"apiRequestId": "string"
}
Internal Server Error
Schema
- Array [
- ]
- Array [
- ]
errors object[]
warnings object[]
{
"errors": [
{
"errorName": "string",
"errorMessage": "string",
"errorCode": 0
}
],
"warnings": [
{
"warningCode": "string",
"warningTitle": "string",
"warningMessage": "string"
}
],
"statusCode": 0,
"apiRequestId": "string"
}