fetch customer lock information for given customer identifiers list and department
fetch customer lock information for given customer identifiers list and department
Path Parameters
departmentUUID string required
application/json
Request Body required
customerUuids string[]
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
customerLockInfoList object[]
requestUuid string
errors object[]
warnings object[]
{
"customerLockInfoList": [
{
"customerUuid": "string",
"dealerDepartmentUuid": "string",
"lockByDealerAssociateUuid": "string",
"lockedByName": "string",
"lockType": "string"
}
],
"requestUuid": "string",
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
POST /department/:departmentUUID/customerlock/list
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/communications/department/:departmentUUID/customerlock/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"customerUuids": [
"string"
]
}'
python / requests
curl -L -X POST '/communications/department/:departmentUUID/customerlock/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"customerUuids": [
"string"
]
}'
go / native
curl -L -X POST '/communications/department/:departmentUUID/customerlock/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"customerUuids": [
"string"
]
}'
nodejs / axios
curl -L -X POST '/communications/department/:departmentUUID/customerlock/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"customerUuids": [
"string"
]
}'
ruby / Net::HTTP
curl -L -X POST '/communications/department/:departmentUUID/customerlock/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"customerUuids": [
"string"
]
}'
csharp / RestSharp
curl -L -X POST '/communications/department/:departmentUUID/customerlock/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"customerUuids": [
"string"
]
}'
php / cURL
curl -L -X POST '/communications/department/:departmentUUID/customerlock/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"customerUuids": [
"string"
]
}'
java / OkHttp
curl -L -X POST '/communications/department/:departmentUUID/customerlock/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"customerUuids": [
"string"
]
}'
powershell / RestMethod
curl -L -X POST '/communications/department/:departmentUUID/customerlock/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"customerUuids": [
"string"
]
}'