Query

Returns detailed information about all records that meet the specified selection criteria.

Syntax

Copy
POST {<i>host_address</i>}/api/openApi/Query

Content-Type: application/json


    "ApiInfo":{ 
        "Token": <<i>access_token</i>> 
    }, 
    "Request":{ 
        "entity": {
            "name": <<i>entity_name</i>>,
            "alias": <<i>entity_alias</i>>
        },
        ["where": <<i>filtering_criteria</i>>,] 
        ["page": <<i>paging_criteria</i>>,] 
        ["orderby": <<i>ordering_criteria</i>>] 
    }
}
 
Parameter Description
host_address URL of the FintechOS platform server.
access_token Access token used to connect to the API endpoint. For details, see GetToken.
entity_name The parent entity, such as entity, attribute, relationship, systemuser, systemusertype, customizationset, businessunit, or portal.

entity_alias

Assigns a unique alias for the entity. This alias is used to precede the entity's attributes' names when referring to them.
filtering_criteria Criteria for filtering the result set.
paging_criteria Criteria for selecting a specific subset of the result set.
oredring_criteria Criteria for ordering the result set.

Response

Copy
{
    "NumberOfResults": 0,
    "TotalNumber": 0,
    "RequestedSkip": 0,
    "RequestedTake": 0,
    "Records": [
            ...
    ],
    "Message": null,
    "IsSuccess": true,
    "ClientScript": null,
    "Serialized": null,
    "ErrorCode": 0,
    "UIResult": null
}
 
Key Description
Records Detailed information about each record in the result set.

Examples