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 the lines base64 encoded |
| LogNumPages | integer | if the request parameter IncludeLogs set to true, this is the number of pages to do all the pagination |
| Report | Report | if the request parameter IncludeReports set to true, this object will be with the execution report values |
Report object
| Field | Data Type | Description |
|---|---|---|
| ElapsedTime | string | Duration time (HH:mm:ss) |
| EndedAt | string | End time (yyyy-MM-dd HH:mm:ss) |
| StartedAt | string | Start time (yyyy-MM-dd HH:mm:ss) |
| TotalDuration | integer | Duration in seconds |
| CompletedBPTRecords | integer | Number of BPT records already processed |
| CompletedBPTVolume | integer | Size of migrated BPT records already processed |
| CompletedInstructions | integer | Number of instructions already processed |
| CompletedRecords | integer | Number of entities records already processed |
| TotalBPTRecords | integer | Total number of BPT records to execute |
| TotalBPTVolume | integer | Total size of BPT records to execute |
| TotalInstructions | integer | Number of instructions to execute |
| TotalRecords | integer | Total number of entities records to execute |
| TotalVolumeKBs | integer | Total size of entities records to execute |
| Message | Message | Extra message from the current execution status |
Message object
| Field | Data Type | Description |
|---|---|---|
| MessageText | string | Message line. More information about the execution status |
| MessageType | string | Type of the message. The options are Danger, Success, Info or Error |
