Calculate monthly fee estimate

POST /wf/pricing_2

Calculate monthly fee estimate

Body

Body of the POST request

  • country_project string Required

    The country where the installation will be conducted.

    Values are Germany, Sweden, Switzerland, or Netherlands.

  • currency_project string Required

    The currency of the project's invoice.

    Values are EUR, kr, or CHF.

  • organization string Required

    You can get your organization ID by making a GET request to the Get User Information endpoint.

  • total_cost_installation (after subsidies) (incl vat) number(float) Required

    Total cost of the installation after subsidies, including VAT.

  • LTI_tenor string Required

    This parameter specifies the length of time for the financial product, which is necessary to calculate the estimated monthly payments. It is important to select an appropriate duration, as this will directly impact the calculated pricing.

    Values are 1 year, 2 years, 3 years, 4 years, 5 years, 6 years, 7 years, 8 years, 9 years, 10 years, 11 years, 12 years, 13 years, 14 years, 15 years, 16 years, 17 years, 18 years, 19 years, or 20 years.

  • LTI_downpayment number(float) Required

    The downpayment parameter represents the initial payment percentage for the installation, ranging from 0% to 40% of the total installation cost. The monthly fee is calculated based on the provided downpayment value, with higher downpayments leading to lower monthly payments.

Responses

  • 200

    Workflow response

    Hide response attributes Show response attributes object
    • status string

      Outcome of the workflow

    • response object
      Hide response attribute Show response attribute object
      • Monthly_fee number(float)
  • 400

    Workflow failure

    Hide response attributes Show response attributes object
    • status string

      Outcome of the workflow

    • message string

      Error message for the workflow

  • 401

    Permission denied

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • 404

    Not found

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • 405

    Wrong method

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • 429

    Too many requests

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • 500

    Internal bug. Please file a bug report at bubble.io/support/report with the request that triggers this bug

    Hide response attributes Show response attributes object
    • code string

      Error code

    • message string

      Error message for the operation

  • 503

    Service Unavailable

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

POST /wf/pricing_2
curl \
 --request POST 'https://cloover.co/api/1.1/wf/pricing_2' \
 --data '{"country_project":"Germany","currency_project":"EUR","organization":"string","total_cost_installation (after subsidies) (incl vat)":42.0,"LTI_tenor":"10 years","LTI_downpayment":42.0}'
Request examples
{
  "country_project": "Germany",
  "currency_project": "EUR",
  "organization": "string",
  "total_cost_installation (after subsidies) (incl vat)": 42.0,
  "LTI_tenor": "10 years",
  "LTI_downpayment": 42.0
}
Response examples (200)
{
  "status": "string",
  "response": {
    "Monthly_fee": 42.0
  }
}
Response examples (400)
{
  "status": "string",
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (405)
{
  "message": "string"
}
Response examples (429)
{
  "message": "string"
}
Response examples (500)
{
  "code": "string",
  "message": "string"
}
Response examples (503)
{
  "message": "string"
}