POST PagoServicios/GetPendingServiceBillsOld

Request Information

URI Parameters

None.

Body Parameters

GetPendingServiceBillsInput
NameDescriptionTypeAdditional information
Data

Collection of ServicePaymentField

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:
{
  "Data": [
    {
      "FieldKey": "sample string 1",
      "FieldType": "sample string 2",
      "FieldValue": "sample string 3"
    },
    {
      "FieldKey": "sample string 1",
      "FieldType": "sample string 2",
      "FieldValue": "sample string 3"
    }
  ],
  "ChannelId": 1,
  "TenantId": "sample string 2",
  "UserLanguage": 3,
  "UserName": "sample string 4",
  "IpAddress": "sample string 5",
  "Location": "sample string 6"
}

application/xml, text/xml

Sample:
<GetPendingServiceBillsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Input">
  <ChannelId>1</ChannelId>
  <IpAddress>sample string 5</IpAddress>
  <Location>sample string 6</Location>
  <TenantId>sample string 2</TenantId>
  <UserLanguage>3</UserLanguage>
  <UserName>sample string 4</UserName>
  <Data>
    <ServicePaymentField>
      <FieldKey>sample string 1</FieldKey>
      <FieldType>sample string 2</FieldType>
      <FieldValue>sample string 3</FieldValue>
    </ServicePaymentField>
    <ServicePaymentField>
      <FieldKey>sample string 1</FieldKey>
      <FieldType>sample string 2</FieldType>
      <FieldValue>sample string 3</FieldValue>
    </ServicePaymentField>
  </Data>
</GetPendingServiceBillsInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetPendingServiceBillsResult
NameDescriptionTypeAdditional information
PendingServiceBills

Collection of ServiceBill

None.

PendingServiceBillsCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "PendingServiceBills": [
    {
      "AccountIdentifier": "sample string 1",
      "Amount": 2.0,
      "CurrencyId": "sample string 3",
      "Description": "sample string 4",
      "DueDate": "2024-12-22T02:32:33.0500025-05:00",
      "ServiceBillId": "sample string 6",
      "ServiceBillStatusId": 64,
      "ServicePaymentEntityId": 8
    },
    {
      "AccountIdentifier": "sample string 1",
      "Amount": 2.0,
      "CurrencyId": "sample string 3",
      "Description": "sample string 4",
      "DueDate": "2024-12-22T02:32:33.0500025-05:00",
      "ServiceBillId": "sample string 6",
      "ServiceBillStatusId": 64,
      "ServicePaymentEntityId": 8
    }
  ],
  "PendingServiceBillsCount": 1
}

application/xml, text/xml

Sample:
<GetPendingServiceBillsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Result">
  <PendingServiceBills>
    <ServiceBill>
      <AccountIdentifier>sample string 1</AccountIdentifier>
      <Amount>2</Amount>
      <CurrencyId>sample string 3</CurrencyId>
      <Description>sample string 4</Description>
      <DueDate>2024-12-22T02:32:33.0500025-05:00</DueDate>
      <ServiceBillId>sample string 6</ServiceBillId>
      <ServiceBillStatusId>64</ServiceBillStatusId>
      <ServicePaymentEntityId>8</ServicePaymentEntityId>
    </ServiceBill>
    <ServiceBill>
      <AccountIdentifier>sample string 1</AccountIdentifier>
      <Amount>2</Amount>
      <CurrencyId>sample string 3</CurrencyId>
      <Description>sample string 4</Description>
      <DueDate>2024-12-22T02:32:33.0500025-05:00</DueDate>
      <ServiceBillId>sample string 6</ServiceBillId>
      <ServiceBillStatusId>64</ServiceBillStatusId>
      <ServicePaymentEntityId>8</ServicePaymentEntityId>
    </ServiceBill>
  </PendingServiceBills>
  <PendingServiceBillsCount>1</PendingServiceBillsCount>
</GetPendingServiceBillsResult>