Get Pre Validation Report V2 Using GET
This API is used to get validation report of a precheck request.
Request
URI
GET
https://{api_host}/lcm/request/api/v2/requests/{requestId}/pre-validation-report
COPY
Path Parameters
string
requestId
Required
requestId
Responses
200
OK
Returns ValidationReport of type(s) application/json
{
"lastUpdateTimeMillis": 0,
"manualValidations": [
{
"checkName": "string",
"checkType": "string",
"childElements": [
"ManualValidationElement Object"
],
"elementType": "string",
"id": "string",
"isScriptable": "string",
"recommendations": [
"string"
],
"resultDescription": "string",
"scriptPath": "string",
"status": "string"
}
],
"overallStatus": false,
"requestId": "string",
"requestState": "string",
"rootValidations": [
{
"checkName": "string",
"checkType": "string",
"childElements": [
"ValidationElement Object"
],
"descriptionParameter": [
"string"
],
"elementType": "string",
"id": "string",
"localizedCheckNameId": "string",
"localizedDescriptionId": "string",
"localizedRecommendationsIds": [
"string"
],
"recommendationParams": {
"recommendationParams": [
"string"
]
},
"recommendations": [
"string"
],
"resultDescription": "string",
"status": "string"
}
],
"startTimeMillis": 0
}
integer As int64 As int64
lastUpdateTimeMillis
Optional
lastUpdateTimeMillis
boolean
overallStatus
Optional
overallStatus
string
requestId
Optional
requestId
string
requestState
Optional
requestState
integer As int64 As int64
startTimeMillis
Optional
startTimeMillis
400
Bad Request
Returns GenericErrorResponseDTO of type(s) application/json
{
"errorCode": "LCM_EXAMPLE_API_ERROR0000",
"errorLabel": "Example Error!",
"message": "Something went wrong!",
"recommendations": []
}
string
errorCode
Optional
errorCode
string
errorLabel
Optional
errorLabel
string
message
Optional
message
array of string
recommendations
Optional
recommendations
401
Unauthorized
Operation doesn't return any data structure
403
Forbidden
Operation doesn't return any data structure
404
Not Found
Returns GenericErrorResponseDTO of type(s) application/json
{
"errorCode": "LCM_EXAMPLE_API_ERROR0000",
"errorLabel": "Example Error!",
"message": "Something went wrong!",
"recommendations": []
}
string
errorCode
Optional
errorCode
string
errorLabel
Optional
errorLabel
string
message
Optional
message
array of string
recommendations
Optional
recommendations
500
Internal Server Error
Returns GenericErrorResponseDTO of type(s) application/json
{
"errorCode": "LCM_EXAMPLE_API_ERROR0000",
"errorLabel": "Example Error!",
"message": "Something went wrong!",
"recommendations": []
}
string
errorCode
Optional
errorCode
string
errorLabel
Optional
errorLabel
string
message
Optional
message
array of string
recommendations
Optional
recommendations
Pre Validation Report Controller Operations
GET
Get Pre Validation Report V2 Using GET