Data Feed 64 Release
Installment (EXTRACT-9735, EXTRACT-10162, EXTRACT-10932, EXTRACT-10157, EXTRACT-10152)
(Data Feed, Universal Connector)
A new object has been added called Installment. This new Installment object contains installment schedule details. Subscribing to an installment schedule will automatically subscribe the Installment.
There is no option to subscribe to the Installment object directly. When the installment schedule is formed, the Installment object is broadcast as a byproduct. The payload of the Installment object looks as follows:
{
"action": "create",
"client_no": 7000219,
"data": {
"installment_schedule": {
"ids": {
"installment_no": 772
},
"type": "Installment_Schedule"
},
"seq_no": 1
},
"date": "2025-03-14T03:40:20+01:00",
"ref": {
"ids": {
"installment_no": 772,
"seq_no": 1
},
"type": "Installment"
}
}
When an installment is updated, for example when a field is updated after a payment is made, the update installment payload is streamed. The update installment payload looks as follows:
{
"action": "update",
"client_no": 7000219,
"data": {
"due_amount": 1,
"installment_no": 414,
"installment_schedule": {
"ids": {
"installment_no": 414
},
"type": "Installment_Schedule"
},
"is_closed": false,
"notification": null,
"seq_no": 1,
"statement": {
"ids": {
"statement_no": 0
},
"type": "Statement"
},
"status": {
"ids": {
"status_no": 1
},
"type": "Installment_Status"
},
"updated_tstamp": "2025-12-29T23:07:07+01:00"
},
"date": "2025-04-01T23:07:22+02:00",
"ref": {
"ids": {
"installment_no": 414,
"seq_no": 1
},
"type": "Installment"
}
}
Although the installment cannot be deleted, a delete event can be manually created. In the case of manual deletion a delete event is raised and streamed.
A separate option for Installment has been created for the init load within the financial objects.
Note: The Installment object is not currently available for Snowflake as of R64 but is scheduled to be included in the next release.