List Custom Form Types

post/fetch/CFOT

Retrieves a list of Custom Form Types.

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

OK

Response Schema: application/json
object
node
string non-empty
startRow
number
Array of objects non-empty unique
Array (non-empty)
version
number
typedId
string non-empty
uniqueName
string non-empty
label
string non-empty
headerFormulaName
string non-empty
embedded
boolean
supportedParentTypeCodes
Array of any
createDate
string non-empty
createdBy
number
lastUpdateDate
string non-empty
lastUpdateBy
number
endRow
number
totalRows
number
status
number
Request samples
application/json
{
  • "endRow": 300,
  • "oldValues": null,
  • "operationType": "fetch",
  • "startRow": 0,
  • "textMatchStyle": "exact",
  • "data": {
    • "_constructor": "AdvancedCriteria",
    • "operator": "and",
    • "criteria": [
      • {
        • "fieldName": "module",
        • "operator": "equals",
        • "value": "QUOTING"
        }
      ]
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "pricefx-cluster-app-frontend-7f5685597f-7p2tn",
    • "startRow": 0,
    • "data": [
      • {
        • "version": 0,
        • "typedId": "4.CFOT",
        • "uniqueName": "CFOT",
        • "label": "CustomFormType",
        • "headerFormulaName": "CFOTlogic",
        • "embedded": true,
        • "supportedParentTypeCodes": [
          ],
        • "createDate": "2022-05-19T11:47:28",
        • "createdBy": 2147490696,
        • "lastUpdateDate": "2022-05-19T11:47:28",
        • "lastUpdateBy": 2147490696
        }
      ],
    • "endRow": 1,
    • "totalRows": 1,
    • "status": 0
    }
}