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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ConnString

string

Default value is

Body Parameters

ReallocateInstallmentList
NameDescriptionTypeAdditional information
ReallocateInstList

Collection of ReallocateInstallment

None.

Request Formats

application/json, text/json

Sample:
{
  "ReallocateInstList": [
    {
      "TransNum": 1,
      "Reference": 2,
      "InstNumber": 3
    },
    {
      "TransNum": 1,
      "Reference": 2,
      "InstNumber": 3
    }
  ]
}

application/xml, text/xml

Sample:
<ReallocateInstallmentList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LibraAPI.Models">
  <ReallocateInstList>
    <ReallocateInstallment>
      <InstNumber>3</InstNumber>
      <Reference>2</Reference>
      <TransNum>1</TransNum>
    </ReallocateInstallment>
    <ReallocateInstallment>
      <InstNumber>3</InstNumber>
      <Reference>2</Reference>
      <TransNum>1</TransNum>
    </ReallocateInstallment>
  </ReallocateInstList>
</ReallocateInstallmentList>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.