Get Action Status

post/datamart.getactionstatus/{actionUUID}

Retrieves the link of the exported file in the result property. Use the /datamart.fetchexportfile/{fileName} to download the file.

Securitybasic or X-PriceFx-jwt
Request
path Parameters
actionUUID
required
string
Responses
200

OK

Response Schema: application/json
object
node
string non-empty
startRow
number
Array of objects non-empty unique
Array (non-empty)
actionUUID
string non-empty
createDate
string non-empty
lastUpdateDate
string non-empty
executionNode
string non-empty
executionThread
string non-empty
status
string non-empty
cancelRequested
boolean
skippedOps
Array of objects
object
calculationMessages
Array of objects
validationErrors
any
endRow
number
totalRows
number
status
number
Request samples
Response samples
application/json
{
  • "response": {
    • "node": "pricefx-cluster-app-frontend-689c85c8b6-qqmd9",
    • "startRow": 0,
    • "data": [
      • {
        • "actionUUID": "ExportAction-CL3WG",
        • "createDate": "2022-03-02",
        • "lastUpdateDate": "2022-03-02",
        • "executionNode": "pricefx-cluster-app-frontend-689c85c8b6-srhk2",
        • "executionThread": "ExportAction-CL3WG",
        • "status": "READY",
        • "cancelRequested": false,
        • "skippedOps": [ ],
        • "result": {
          },
        • "calculationMessages": [ ],
        • "validationErrors": null
        }
      ],
    • "endRow": 1,
    • "totalRows": 1,
    • "status": 0
    }
}