List Action Items

post/fetch/AI

Retrieves Action Items by filter criteria. To retrieve a specific action, filter the action by id as follows:

{
   "data":{
      "fieldName":"id",
      "operator":"equals",
      "value":"41",
      "_constructor":"AdvancedCriteria"
   }
}
Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
object
fieldName
string
operator
string
value
string
_constructor
string
Responses
200

OK

Response Schema: application/json
object
status
integer
startRow
integer
node
string
Array of objects (ActionItem)
Array
lastUpdateByName
string or null <= 255 characters
Array of objects
createdByName
string or null <= 255 characters
typedId
string
assignedToName
string <= 255 characters
lastUpdateDate
string <date-time>
dueDate
string <date-time>
actionItemType
required
string
description
string or null
parentTabName
string or null <= 255 characters
assignedTo
required
integer
assignedToGroup
string or null <= 255 characters
sourceContext
string or null <= 255 characters
targetContext
string or null <= 255 characters
parentTypedId
string or null <= 255 characters
completedByName
string or null <= 255 characters
createDate
string <date-time>
summary
required
string <= 255 characters
originatorTypedId
string or null <= 255 characters
version
integer
completedDate
string or null <date-time>
uniqueName
string <= 255 characters
createdBy
integer
completedBy
integer or null
status
string <= 255 characters
Possible values: "OPEN" "DONE" "REJECTED" "BLOCKED" "POSTPONED"
lastUpdateBy
integer
endRow
integer
Request samples
application/json
{
  • "endRow": 300,
  • "oldValues": null,
  • "operationType": "fetch",
  • "startRow": 0,
  • "textMatchStyle": "exact",
  • "data": {
    • "_constructor": "AdvancedCriteria",
    • "operator": "and",
    • "criteria": [
      • {
        • "_constructor": "AdvancedCriteria",
        • "operator": "and",
        • "criteria": [
          ]
        },
      • {
        • "fieldName": "parentTypedId",
        • "operator": "equals",
        • "value": "90.DP",
        • "_constructor": "AdvancedCriteria"
        }
      ]
    }
}
Response samples
application/json
{
  • "response": {
    • "status": 0,
    • "startRow": 0,
    • "node": "string",
    • "data": [
      • {
        • "lastUpdateByName": "string",
        • "outputs": [
          ],
        • "createdByName": "string",
        • "typedId": "string",
        • "assignedToName": "string",
        • "lastUpdateDate": "2019-08-24T14:15:22Z",
        • "dueDate": "2019-08-24T14:15:22Z",
        • "actionItemType": "string",
        • "description": "string",
        • "parentTabName": "string",
        • "assignedTo": 0,
        • "assignedToGroup": "string",
        • "sourceContext": "string",
        • "targetContext": "string",
        • "parentTypedId": "string",
        • "completedByName": "string",
        • "createDate": "2019-08-24T14:15:22Z",
        • "summary": "string",
        • "originatorTypedId": "string",
        • "version": 0,
        • "completedDate": "2019-08-24T14:15:22Z",
        • "uniqueName": "string",
        • "createdBy": 0,
        • "completedBy": 0,
        • "status": "OPEN",
        • "lastUpdateBy": 0
        }
      ],
    • "endRow": 0
    }
}