Get asset 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}/assets/options
  
  curl \
 --request GET 'https://api.fincalc.co.uk/api/v2/household/{HouseholdGUID}/assets/options' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
    
        Response examples (200)
  
  {
  "success": true,
  "data": {
    "AssetType": {
      "1": "Main Residence",
      "2": "Other Property",
      "3": "Buy to Let Property",
      "4": "Business Interests",
      "5": "Vehicle",
      "6": "Other Asset"
    },
    "StartBasis": {
      "1": "Current",
      "2": "Specific Age",
      "3": "Specific Date"
    },
    "StartEventGUID": {
      "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"
    },
    "EndBasis": {
      "2": "Specific Age",
      "3": "Specific Date",
      "4": "Event"
    },
    "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"
    },
    "AssetPurchased": {
      "1": "Yes",
      "2": "No"
    },
    "AssetDisposal": {
      "1": "Yes",
      "2": "No",
      "3": "On death"
    },
    "ClearLiabilities": {
      "1": "Yes",
      "2": "No"
    },
    "TaxBasis": {
      "1": "Residential property",
      "2": "Not subject to CGT",
      "3": "Other asset",
      "4": "Qualifies for BADR relief",
      "5": "Qualifies for Investors relief"
    },
    "BackOfficeSync": {
      "1": "Yes",
      "2": "No",
      "3": "Only update from back office"
    }
  }
}
        Response examples (403)
  
  {
  "success": false,
  "message": "You do not have permission to view the household."
}
        Response examples (404)
  
  {
  "success": false,
  "message": "Household not found."
}