Documentation
Feedback
Guides

Release Notes
Release Notes
2023
October
New referenceValue parameter in the Create Payment endpoint request body
New parameter available in the Create Payment endpoint request body.

What changed?

The referenceValue parameter was added to the Create Payment endpoint request body. This new field was created to represent the interest-free payment amount and is automatically filled in by the gateway before being sent to the payment connector.

The values ​​of the value and referenceValue fields will be equal whenever the value of the installmentsInterestRate field is equal to zero.

See the examples below:

Example 1: Order value is 15.00 (interest free).


_10
...
_10
"value": "15.00",
_10
"referenceValue": "15.00",
_10
"installments": 1,
_10
"installmentsInterestRate": "0.00"
_10
...

Example 2: Order value is 15.00 (with interest of 1.00 per month, 3 installments).


_10
...
_10
"value": "15.00",
_10
"referenceValue": "12.00",
_10
"installments": 3,
_10
"installmentsInterestRate": "1.00"
_10
...

What needs to be done?

No action is needed.

Contributors
1
Photo of the contributor
+ 1 contributors
Was this helpful?
Yes
No
Suggest edits (Github)
Contributors
1
Photo of the contributor
+ 1 contributors
On this page