POST PagoServicios/GetServicePaymentDataFromDynamicData

Request Information

URI Parameters

None.

Body Parameters

GetServicePaymentDataFromDynamicDataInput
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:
<GetServicePaymentDataFromDynamicDataInput 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>
</GetServicePaymentDataFromDynamicDataInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetServicePaymentDataFromDynamicDataResult
NameDescriptionTypeAdditional information
BillData

Collection of ServicePaymentField

None.

BackendOperationResult

BackendOperationResult

None.

Response Formats

application/json, text/json

Sample:
{
  "BillData": [
    {
      "FieldKey": "sample string 1",
      "FieldType": "sample string 2",
      "FieldValue": "sample string 3"
    },
    {
      "FieldKey": "sample string 1",
      "FieldType": "sample string 2",
      "FieldValue": "sample string 3"
    }
  ],
  "BackendOperationResult": {
    "IsError": true,
    "BackendMessage": "sample string 1",
    "BackendReference": "sample string 2",
    "BackendCode": "sample string 3",
    "TransactionIdentity": "sample string 4"
  }
}

application/xml, text/xml

Sample:
<GetServicePaymentDataFromDynamicDataResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Result">
  <BackendOperationResult>
    <BackendCode>sample string 3</BackendCode>
    <BackendMessage>sample string 1</BackendMessage>
    <BackendReference>sample string 2</BackendReference>
    <IsError>true</IsError>
    <TransactionIdentity>sample string 4</TransactionIdentity>
  </BackendOperationResult>
  <BillData xmlns:d2p1="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Input">
    <d2p1:ServicePaymentField>
      <d2p1:FieldKey>sample string 1</d2p1:FieldKey>
      <d2p1:FieldType>sample string 2</d2p1:FieldType>
      <d2p1:FieldValue>sample string 3</d2p1:FieldValue>
    </d2p1:ServicePaymentField>
    <d2p1:ServicePaymentField>
      <d2p1:FieldKey>sample string 1</d2p1:FieldKey>
      <d2p1:FieldType>sample string 2</d2p1:FieldType>
      <d2p1:FieldValue>sample string 3</d2p1:FieldValue>
    </d2p1:ServicePaymentField>
  </BillData>
</GetServicePaymentDataFromDynamicDataResult>