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 method | POST |
| Path | /api/rawentities/multiple/alltypes |
| Request parameters | None |
| Reference | Coming soon |
Request body JSON format
{
"fundVehicleIds": [...],
"investorIds": [...],
"assetIds": [...],
"investeeFundIds": [...],
"spvIds": [...],
"contactInternalIds": [...],
"contactRoleInternalIds": [...]
} Response
| Code | Meaning |
|---|---|
| 200 | Get data successfully. |
| 400 | Required fields aren’t provided. |
| 401 | Access token is not valid. |
| 403 | Token has no permission. |
Response body JSON format
{
"fundVehicles": [...],
"investors": [...],
"assets": [...],
"investeeFunds": [...],
"spvs": [...],
"contacts": [...],
"contactRoles": [...]
} Updated about 17 hours ago
