FTOS_BP_GetAvailableProductsExtra

Returns the extra information of all banking products available on the specified date based on the product type id or the product type.

Syntax

The FTOS_BP_GetAvailableProductsExtra custom endpoint is called from within the Endpoint API endpoint. Visit the Endpoint API page for more details.

Copy
POST <host_address>/ftosapi/automation-processors/actions/ftos_bp_getavailableproductsextra
Content-Type: application/json
            
{
  "currentDate": "<dd_mm_yyyy>",
  "productType": "<product_type_code>",
  "filterList": [{
    "name": "<name_of_filter>",
    "value": <filter_value>
  }]
}

Here's a list of the available parameters:

Parameter Description
host_address URL of the FintechOS Platform server.
currentDate Mandatory, new Date (). The date for when you wish to retrieve the banking product types with active products.
productType Mandatory when productTypeId is not sent. The code of the product type. Possible values can be found in the bpProductType option set (CC, C, TL, MG, D, LS, BA, OD).
productTypeId Mandatory when productType is not sent. The id of the product type, from the FTOS_BP_BankingProduct entity's bpProductTypeId attribute.
filterList Optional, object with name and value parameters. The list of filters to be used for filtering the displayed information.

Response

The response is an object with details about a specific banking product from the FTOS_BP_BankingProduct entity. The data enclosed in a specific section is returned only if their corresponding flags are set to true.

Example