POST Prestamos/GetLoanPayments

Request Information

URI Parameters

None.

Body Parameters

GetLoanPaymentsInput
NameDescriptionTypeAdditional information
ProductBankIdentifier

string

None.

Paging

Paging

None.

ChannelId

integer

None.

TenantId

string

None.

UserLanguage

integer

None.

UserName

string

None.

IpAddress

string

None.

Location

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ProductBankIdentifier": "sample string 1",
  "Paging": {
    "OrderByField": "sample string 1",
    "PageStartIndex": 2,
    "PageSize": 3
  },
  "ChannelId": 2,
  "TenantId": "sample string 3",
  "UserLanguage": 4,
  "UserName": "sample string 5",
  "IpAddress": "sample string 6",
  "Location": "sample string 7"
}

application/xml, text/xml

Sample:
<GetLoanPaymentsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Input">
  <ChannelId>2</ChannelId>
  <IpAddress>sample string 6</IpAddress>
  <Location>sample string 7</Location>
  <TenantId>sample string 3</TenantId>
  <UserLanguage>4</UserLanguage>
  <UserName>sample string 5</UserName>
  <Paging>
    <OrderByField>sample string 1</OrderByField>
    <PageSize>3</PageSize>
    <PageStartIndex>2</PageStartIndex>
  </Paging>
  <ProductBankIdentifier>sample string 1</ProductBankIdentifier>
</GetLoanPaymentsInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetLoanPaymentsResult
NameDescriptionTypeAdditional information
LoanPayments

Collection of LoanPayment

None.

LoanPaymentsCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "LoanPayments": [
    {
      "CapitalBalance": 1.0,
      "FeeNumber": 1,
      "MovementType": 2,
      "NormalInterestAmount": 1.0,
      "OthersAmount": 1.0,
      "OverdueInterestAmount": 1.0,
      "PaymentDate": "2024-12-22T02:00:18.2770414-05:00",
      "PrincipalAmount": 1.0,
      "TotalAmount": 1.0
    },
    {
      "CapitalBalance": 1.0,
      "FeeNumber": 1,
      "MovementType": 2,
      "NormalInterestAmount": 1.0,
      "OthersAmount": 1.0,
      "OverdueInterestAmount": 1.0,
      "PaymentDate": "2024-12-22T02:00:18.2770414-05:00",
      "PrincipalAmount": 1.0,
      "TotalAmount": 1.0
    }
  ],
  "LoanPaymentsCount": 1
}

application/xml, text/xml

Sample:
<GetLoanPaymentsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Result">
  <LoanPayments>
    <LoanPayment>
      <CapitalBalance>1</CapitalBalance>
      <FeeNumber>1</FeeNumber>
      <MovementType>2</MovementType>
      <NormalInterestAmount>1</NormalInterestAmount>
      <OthersAmount>1</OthersAmount>
      <OverdueInterestAmount>1</OverdueInterestAmount>
      <PaymentDate>2024-12-22T02:00:18.2770414-05:00</PaymentDate>
      <PrincipalAmount>1</PrincipalAmount>
      <TotalAmount>1</TotalAmount>
    </LoanPayment>
    <LoanPayment>
      <CapitalBalance>1</CapitalBalance>
      <FeeNumber>1</FeeNumber>
      <MovementType>2</MovementType>
      <NormalInterestAmount>1</NormalInterestAmount>
      <OthersAmount>1</OthersAmount>
      <OverdueInterestAmount>1</OverdueInterestAmount>
      <PaymentDate>2024-12-22T02:00:18.2770414-05:00</PaymentDate>
      <PrincipalAmount>1</PrincipalAmount>
      <TotalAmount>1</TotalAmount>
    </LoanPayment>
  </LoanPayments>
  <LoanPaymentsCount>1</LoanPaymentsCount>
</GetLoanPaymentsResult>