API - validation calculation progressThis endpoint allows retrieving the progress status for the assigned validation rules on the config data set. This can be used in order to understand if all validation rules have been finished before requesting the validationStatus of the config data set. The user must have the VIEW permissions on the config data set name in order to retrieve its content. Endpoint methodGET URI/api/v1/data/include/validation_progress Headers ! AuthorizationBearer <userToken or APIkey> Parameters ! mdsmyMdsNamethe exact name of the config data set for which a snapshot should be taken!forIncomingtrue|falsedefines if the validation logic should be applied on the pending data or the current active snapshot response The response is "FINISHED" or "IN PROGRESS" In case of insufficient permissions, the response object will contain a {"AccessDeniedException"} message. In case the MDS has no pending data, the response object will contain a NotFoundException error. {"error":"NotFoundException","error_description":"Root Include myMdsName has no pending data","links":[]} Example cURL curl -X POST 'https://demo.sweagle.com//api/v1/data/include/validation_progress' -H "Authorization: bearer Xeb940d3-ea37-4766-bb6c-f0b83deafb6f" -d 'mds=myMdsName&forIncoming=true'