Worker's current fund allocation. Read-only. This reflects the allocation the worker is invested in, not an in-flight fund switch.
GET
/employers/{employer_id}/employees/{employee_id}/fund_allocation
curl \
--request GET 'https://payroll-api.getpenfold.dev/v4/employers/{employer_id}/employees/{employee_id}/fund_allocation' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": "string",
"name": "string",
"description": "string",
"provider": "string",
"risk_level": 42,
"effective_annual_fee_percent": 42.0,
"asset_allocation": [
{
"asset_class": "string",
"percent": 42.0
}
],
"asset_allocation_as_of_date": "2026-05-04"
}
Response examples (401)
{
"error": "Bad request: invalid data provided."
}
Response examples (404)
{
"error": "Bad request: invalid data provided."
}
Response examples (405)
{
"error": "Bad request: invalid data provided."
}