Get pension options
This endpoint provides a comprehensive list of valid options for each field. The response example displayed is only a summarised version of the actual list. By using this endpoint, a complete list of available options for each field can be retrieved.
Path parameters
-
The GUID of the household you wish to get options for.
GET
/api/v2/household/{HouseholdGUID}/pensions/options
curl \
-X GET https://api.fincalc.co.uk/api/v2/household/{HouseholdGUID}/pensions/options \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"success": true,
"data": {
"PensionType": {
"1": "Defined Benefit Deferred",
"6": "Defined Benefit Active",
"5": "Defined Contribution Fund"
},
"DCSpecialType": {
"": "None (normal pension fund)",
"1": "Beneficiary Drawdown (death pre age 75)",
"2": "QROP scheme (30% tax free cash)"
},
"Frequency": {
"120": "One-off",
"52": "Paid Weekly",
"26": "Paid Fortnightly"
},
"Providercode": {
"00028d6f-3ccf-e011-87a9-b8ac6f1693a8": "Life Assurance Corporation of India",
"001ee90c-3dcf-e011-87a9-b8ac6f1693a8": "Toluna Plc",
"002c2f7c-3bcf-e011-87a9-b8ac6f1693a8": "Standard Life Investments"
},
"EndBasis": {
"1": "In Payment",
"2": "Specific Age",
"3": "Specific Date"
},
"EndEventGUID": {
"8C31BBA6-9C63-4F6F-BD6E-2C63B63B3B3B": "Tony's State Pension Age",
"1A2B3C4D-5E6F-7G8H-9I0J-1K2L3M4N5O6P": "Tina's State Pension Age",
"E8F8B580-0D24-45B7-9DA1-8F11F64B6909": "Tina's Birthday"
},
"TaxBasis": {
"1": "Taxable",
"2": "Non-Taxable"
},
"ATRSlot": {
"17": "Lowest",
"19": "Cautious",
"22": "Balanced and more"
},
"DBAccrualBasis": {
"1": "Final Salary",
"2": "Career Average"
},
"LumpSumDeathBenefitBasis": {
"1": "None",
"2": "£",
"3": "Multiple of pension"
},
"ProtectedAge": {
"1": "Yes",
"2": "No"
},
"ProtectedTFC": {
"1": "Yes",
"2": "No"
},
"DBRetirementBasis": {
"1": "Full Pension",
"2": "Max Tax Free Cash and Reduced Pension",
"3": "Max PCLS and Reduced Pension"
},
"DCRetirementBasis": {
"1": "100% Annuity",
"2": "Max Tax Free Cash + Annuity",
"3": "Auto Withdrawals",
"4": "Never touch",
"5": "Auto Withdrawals from retirement age"
},
"LinkedIncomeGUID": {
"8C31BBA6-9C63-4F6F-BD6E-2C63B63B3B3B": "Our House",
"1A2B3C4D-5E6F-7G8H-9I0J-1K2L3M4N5O6P": "Our Boat",
"E8F8B580-0D24-45B7-9DA1-8F11F64B6909": "Rental Property"
},
"BackOfficeSync": {
"1": "Yes",
"2": "No",
"3": "Only update from back office"
},
"FutureRiskLevelChange": {
"1": "Yes",
"2": "No"
},
"FutureRiskLevel": {
"17": "Lowest",
"19": "Cautious",
"22": "Balanced and more"
},
"FutureRiskDateOfChangeBasis": {
"2": "Specific Age",
"3": "Specific Date",
"4": "Event"
},
"FutureRiskDateOfChangeEventGUID": {
"8C31BBA6-9C63-4F6F-BD6E-2C63B63B3B3B": "Tony's State Pension Age",
"1A2B3C4D-5E6F-7G8H-9I0J-1K2L3M4N5O6P": "Tina's State Pension Age",
"E8F8B580-0D24-45B7-9DA1-8F11F64B6909": "Tina's Birthday"
}
}
}
Response examples (403)
{
"success": false,
"message": "You do not have permission to view the household."
}
Response examples (404)
{
"success": false,
"message": "Household not found."
}