Get historical managed assets for entities.
Retrieve a list of managed aum periods based on your query parameters.
curl -v -X GET https://api.swfi.com/v1/aum-managed?before_created_at=2022-10-17&after_created_at=2022-10-12&before_updated_at=2022-10-17&after_updated_at=2022-10-12&before_period=2022-10-17&after_period=2022-10-12&assets_gte=50000000&assets_lte=70000000&entity_id=598cdaa60124e9fd2d05bdc4&limit=10&offset=0&sort_field=period&sort_dir=ASC \ -H "Accept: application/json" \ -H "Authorization: $API_KEY"
{
"data": [
{
"_id": "6349221bdc82486491e2dcaf",
"entity_id": "598cdaa50124e9fd2d05aa5d",
"currency": "USD",
"period": "2021-09-01T00:00:00.000Z",
"assets": 9463662000000,
"assets_native": 9463662000000,
"assets_defined_contribution": "",
"assets_defined_contribution_native": "",
"created_at": "2022-10-14T08:47:23.057Z",
"updated_at": ""
},
{
"_id": "634921f3ec44894c7619464e",
"entity_id": "598cdaa50124e9fd2d05aa5d",
"currency": "USD",
"period": "2022-09-01T00:00:00.000Z",
"assets": 7961373000000,
"assets_native": 7961373000000,
"assets_defined_contribution": "",
"assets_defined_contribution_native": "",
"created_at": "2022-10-14T08:46:43.216Z",
"updated_at": ""
}
],
"total_items": 10
}{
"errors": [
{
"query_parameter": "sort_field",
"message": "Value not in available options."
}
],
"status": 400
}Retrieve one managed AUM with links to associated resources.
curl -v -X GET https://api.swfi.com/v1/aum-managed/:_id \ -H "Accept: application/json" \ -H "Authorization: $API_KEY"
{
"data": {
"_id": "6349221bdc82486491e2dcaf",
"entity_id": "598cdaa50124e9fd2d05aa5d",
"currency": "USD",
"period": "2021-09-01T00:00:00.000Z",
"assets": 9463662000000,
"assets_native": 9463662000000,
"assets_defined_contribution": "",
"assets_defined_contribution_native": "",
"created_at": "2022-10-14T08:47:23.057Z",
"updated_at": ""
}
}{
"errors": [
{
"path": "/v1/aum/:_id",
"message": "Not Found"
}
],
"status": 404
}