POST api/Installment/SaveInstallmentDetails?ConnString={ConnString}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ConnString

string

Default value is

Body Parameters

InstallmentList
NameDescriptionTypeAdditional information
InstList

Collection of Installment

None.

Request Formats

application/json, text/json

Sample:
{
  "InstList": [
    {
      "InstNumber": 1,
      "Reference": "sample string 2",
      "Description": "sample string 3",
      "ValueDate": "2026-01-08T14:09:23.777056+02:00",
      "Value": 5.0
    },
    {
      "InstNumber": 1,
      "Reference": "sample string 2",
      "Description": "sample string 3",
      "ValueDate": "2026-01-08T14:09:23.777056+02:00",
      "Value": 5.0
    }
  ]
}

application/xml, text/xml

Sample:
<InstallmentList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LibraAPI.Models">
  <InstList>
    <Installment>
      <Description>sample string 3</Description>
      <InstNumber>1</InstNumber>
      <Reference>sample string 2</Reference>
      <Value>5</Value>
      <ValueDate>2026-01-08T14:09:23.777056+02:00</ValueDate>
    </Installment>
    <Installment>
      <Description>sample string 3</Description>
      <InstNumber>1</InstNumber>
      <Reference>sample string 2</Reference>
      <Value>5</Value>
      <ValueDate>2026-01-08T14:09:23.777056+02:00</ValueDate>
    </Installment>
  </InstList>
</InstallmentList>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>