FTOS_BP_GetInterestListDetail

Returns the details of a specific interest list based on its name or id.

Syntax

The FTOS_BP_GetInterestListDetail 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_getinterestlistdetail
Content-Type: application/json
            
{
  "interestListName": "<name_of_the_interest_list>"
}

Here's a list of the available parameters:

Parameter Description
host_address URL of the FintechOS Platform server.
interestListName Mandatory when interestListId is not sent, string. The name of the interest list.
interestListId Mandatory when interestListName is not sent, string. The id of the interest list.

Response

The response is an object with details about all the interests in the interest list from FTOS_BP_Interest and FTOS_BP_InterestValue. If interest type is BankingFormula, then interestRate is equal to the formula result.

Example