GuidesRecipesAPI Reference
Log In
Guides

Retrieve raw data from multiple entities

Definition

Get raw data from multiple entities. The retrieved entity data depends on what properties are on the request body. For example, if the request body contains the fundVehiclesIds and assetIds, the response will return the fundVehicles and assets properties.

Request Limits

  • The total number of identifiers across all arrays combined must not exceed a limit of 300 entity data points per request.
  • If the total number of IDs in all arrays exceeds the allowed limit, the API will return a 400 Bad Request response with an appropriate error message.

User Action Required

If the request exceeds the allowed limit:

  • The user must manually adjust the request body by reducing the number of identifiers included in the arrays.
  • Large requests should be split into multiple smaller requests, each complying with the limit.
  • Ensure that each request remains within the specified total identifier limit before resubmitting.
Http methodPOST
Path/api/rawentities/multiple/alltypes
Request parametersNone
ReferenceComing soon

Request body JSON format

{ 
    "fundVehicleIds": [...], 
    "investorIds": [...], 
    "assetIds": [...], 
    "investeeFundIds": [...], 
    "spvIds": [...], 
    "contactInternalIds": [...], 
    "contactRoleInternalIds": [...] 
} 

Response

CodeMeaning
200Get data successfully.
400Required fields aren’t provided.
401Access token is not valid.
403Token has no permission.

Response body JSON format

{ 
    "fundVehicles": [...], 
    "investors": [...], 
    "assets": [...], 
    "investeeFunds": [...], 
    "spvs": [...], 
    "contacts": [...], 
    "contactRoles": [...] 
}