Response from the endpoint
Main object
Field | Data Type | Description |
---|---|---|
Status | string | Current execution status. One of this options Queued, InProgress, Complete, InError, NotFound |
Result | string | Execution result. Return ERROR if the Status is InError, otherwise OK |
Success | boolean | result of the request |
ErrorMessage | string | if some problem happens and the success is false, this is the error message |
Logs | string | if the request parameter IncludeLogs set to true, this is a zip file base64 encoded. The zip can have multiple files with all the execution logs. |
ZipFile | string | if the request parameter IncludeFiles set to true and the execution is a export to file, this is a zip file base64 encoded. The zip file contains some system entity tables (files ossys_*), the entities metadata (files *_Struct.dmm) and the entities records (files *_Data.csv) |
Report | Report | if the request parameter IncludeReports set to true, this object will be with the execution report values |
ErrorReport | string | if the request parameter IncludeErrorReport set to true, this is a array of json object base64 encoded. For each entity with error, will be created a json with the following format { "FinalReportEntity": "Entity name", "FinalReportError": "Error message", "FinalReportStacktrace": "Exception stack trace", "FinalReportTip": "Could have some tips in how to solve/understand the error", "FinalReportMoment": "Time of the first error (yyyy-MM-dd HH:mm:ss)", "Count": "Number of chunks with this error (in the same entity)" } |
Report object
Field | Data Type | Description |
---|---|---|
ConfigurationType | string | type of the execution (Migration, Import, Export or Delete) |
ExecutionDate | string | Start time (yyyy-MM-dd HH:mm:ss) |
ExecutionDuration | string | Execution duration (HH:mm:ss) |
BPTDataVolume | integer | Total size of BPT records |
DataVolume | integer | Total size of entities records |
NBPTRecords | integer | Total number of BPT records |
NInstructions | integer | Total number of instructions |
NRecords | integer | Total number of entities records |