List Event Tasks

post/fetch/EVT

Retrieves a list of events generated by the Pricefx server. See the Server Events article.

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
endRow
integer
oldValues
object or null
operationType
string
startRow
integer
textMatchStyle
string
object
_constructor
string
operator
string
Array of objects
Array
fieldName
string
operator
string
value
string
Responses
200

OK

Response Schema: application/json
object
node
string
startRow
integer
Array of objects (EventTask)
Array
typedId
string
retriesLeft
integer
createdBy
integer
lastUpdateDate
string <date-time>
errorMessage
string <= 255 characters
name
string <= 255 characters
httpResponse
integer
message
string
version
integer
createDate
string <date-time>
lastUpdateBy
integer
endRow
integer
totalRows
integer
status
integer
Request samples
application/json
{
  • "endRow": 300,
  • "oldValues": null,
  • "operationType": "fetch",
  • "startRow": 0,
  • "textMatchStyle": "exact",
  • "data": {
    • "_constructor": "AdvancedCriteria",
    • "operator": "and",
    • "criteria": [
      • {
        • "fieldName": "name",
        • "operator": "iEquals",
        • "value": "CALCULATION_COMPLETED_PG"
        }
      ]
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "startRow": 0,
    • "data": [
      • {
        • "typedId": "string",
        • "retriesLeft": 0,
        • "createdBy": 0,
        • "lastUpdateDate": "2019-08-24T14:15:22Z",
        • "errorMessage": "string",
        • "name": "string",
        • "httpResponse": 0,
        • "message": "string",
        • "version": 0,
        • "createDate": "2019-08-24T14:15:22Z",
        • "lastUpdateBy": 0
        }
      ],
    • "endRow": 0,
    • "totalRows": 0,
    • "status": 0
    }
}