curl --request POST \
--url https://api.example.com/v1/reports/validation \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"entityId": "<string>",
"type": "validation",
"rules": [
{
"messageIfTrue": "<string>",
"or": [
{
"parameter": "<string>",
"operator": "<string>",
"compareToValue": "<string>"
}
],
"and": [
{
"parameter": "<string>",
"operator": "<string>",
"compareToValue": "<string>"
}
]
}
]
}
'Create validation report
curl --request POST \
--url https://api.example.com/v1/reports/validation \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"entityId": "<string>",
"type": "validation",
"rules": [
{
"messageIfTrue": "<string>",
"or": [
{
"parameter": "<string>",
"operator": "<string>",
"compareToValue": "<string>"
}
],
"and": [
{
"parameter": "<string>",
"operator": "<string>",
"compareToValue": "<string>"
}
]
}
]
}
'Was this page helpful?