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.
        GET
    /api/v2/household/{HouseholdGUID}/pensions/options
  
  curl \
 --request GET 'https://api.fincalc.co.uk/api/v2/household/{HouseholdGUID}/pensions/options' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
    
        Response examples (200)
  
  {
  "success": true,
  "data": {
    "PensionType": {
      "1": "Defined Benefit Deferred",
      "6": "Defined Benefit Active",
      "5": "Defined Contribution Fund"
    },
    "DCSpecialType": {
      "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"
    },
    "ATRGUID": {
      "2F0D4FD5-796F-4313-A544-58A31E938041": "Lowest",
      "A75E327B-7ACA-4F14-A22B-3EC6820BD623": "Cautious",
      "E9E13D38-84CB-4F46-933D-E4878D07D05E": "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"
    },
    "FutureRiskATRGUID": {
      "4E324543-66C4-4DCC-A45D-497131B7EA88": "Lowest",
      "032AC81A-842D-4FA7-A77A-198A5F39333A": "Cautious",
      "A65E304E-ABDC-4547-B420-D2C8F4A4F77B": "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."
}