v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBInterest engine
Create interest plan
Create an interest plan configuration that defines how the platform calculates interest accrual. After it's created, you can apply the interest plan to a specific product or account. For example, you can provide the interest_plan_id when creating a deposit product, when creating a savings account, or when depositing money into an account.
This endpoint generates an Interest plan creation succeeded event.
For more information, refer to the Interest-bearing accounts guide.
post/v1/interest/plan
Headers
Authorizationstring required
Account token - an access token encoded with a Pismo account ID. Tokens can expire quickly, which can result in a "** 401 Unauthorized**" error.
content-typestring required
Content type
Request body
Example request
{
"accrual_basis": "ACTUAL/365",
"accrual_frequency": "DAILY",
"capitalization_frequency": "DAILY",
"currency_code": "986",
"description": "BANKING PLAN",
"interest_type": "COMPOUND",
"benchmark": "FED",
"tax_withholding": {
"withholding_moment": "ACCRUAL",
"fee_processing_code": "001100"
},
"margin": 0.05,
"margin_rate": 1.2
}Response
OK
Example response
{
"interest_plan_id": "07d84f79-3027-47bd-b628-65528ccc8fb2"
}