List Action Types

post/fetch/AIT

Retrieves Action Types (Action Item Types – AIT). A filter can be applied.

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json

A general fetch request. A filter can be applied.

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 (ActionItemType)
Array
formulaName
string or null <= 255 characters

A name of the Action Item Logic used by this type. See the Action Item Logic documentation.

typedId
string
uniqueName
required
string <= 255 characters

A unique name of the Action Item Type.

configuration
object

Tabs defined as a JSON. Used for configuring dynamicTabs in actions, labels of the tabs etc. See the Detail Page Layout and Dynamic Tabs documentation.

createdBy
integer
lastUpdateDate
string <date-time>
userGroupEdit
string or null <= 255 characters
userGroupViewDetails
string or null <= 255 characters
label
string <= 255 characters
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": "lastUpdateDate",
        • "operator": "greaterOrEqual",
        • "value": "2023-06-26T22:00:00.000Z"
        }
      ]
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "startRow": 0,
    • "data": [
      • {
        • "formulaName": "string",
        • "typedId": "string",
        • "uniqueName": "string",
        • "configuration": { },
        • "createdBy": 0,
        • "lastUpdateDate": "2019-08-24T14:15:22Z",
        • "userGroupEdit": "string",
        • "userGroupViewDetails": "string",
        • "label": "string",
        • "version": 0,
        • "createDate": "2019-08-24T14:15:22Z",
        • "lastUpdateBy": 0
        }
      ],
    • "endRow": 0,
    • "totalRows": 0,
    • "status": 0
    }
}