List Rollups

post/datamart.getrollups

Retrieves a list of Datamart Rollups based on filter settings.

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
operationType
string non-empty
startRow
number
endRow
any
textMatchStyle
string non-empty
object
fieldName
string non-empty
operator
string non-empty
value
any
_constructor
string non-empty
oldValues
any
Responses
200

OK

Response Schema: application/json
object
status
number
startRow
number
node
string non-empty
Array of objects non-empty unique
Array (non-empty)
version
number
typedId
string non-empty
label
string non-empty
object
createdByName
string non-empty
visibility
string non-empty
draft
boolean
ownerAndLabel
string non-empty
createDate
string non-empty
createdBy
number
lastUpdateDate
string non-empty
lastUpdateBy
number
isPlasma
boolean
endRow
number
Request samples
application/json
{
  • "operationType": "fetch",
  • "startRow": 0,
  • "endRow": null,
  • "textMatchStyle": "substring",
  • "data": {
    • "fieldName": "owner",
    • "operator": "equals",
    • "value": null,
    • "_constructor": "AdvancedCriteria"
    },
  • "oldValues": null
}
Response samples
application/json
{
  • "response": {
    • "status": 0,
    • "startRow": 0,
    • "node": "string",
    • "data": [
      • {
        • "version": 0,
        • "typedId": "string",
        • "label": "string",
        • "queryDto": {
          },
        • "createdByName": "string",
        • "visibility": "string",
        • "draft": true,
        • "ownerAndLabel": "string",
        • "createDate": "string",
        • "createdBy": 0,
        • "lastUpdateDate": "string",
        • "lastUpdateBy": 0,
        • "isPlasma": true
        }
      ],
    • "endRow": 0
    }
}