POST api/PapsWeb/FundTransfer

Request Information

URI Parameters

None.

Body Parameters

PapsPaymentParam
NameDescriptionTypeAdditional information
debitAccountNumber

string

None.

destinationInstitutionCode

string

None.

CreditAccountNumber

string

None.

CreditAccountName

string

None.

amount

string

None.

EntrustToken

string

None.

Tokentype

string

None.

Request Formats

application/json, text/json

Sample:
{
  "debitAccountNumber": "sample string 1",
  "destinationInstitutionCode": "sample string 2",
  "CreditAccountNumber": "sample string 3",
  "CreditAccountName": "sample string 4",
  "amount": "sample string 5",
  "EntrustToken": "sample string 6",
  "Tokentype": "sample string 7"
}

application/xml, text/xml

Sample:
<PapsPaymentParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.RequestObjs">
  <CreditAccountName>sample string 4</CreditAccountName>
  <CreditAccountNumber>sample string 3</CreditAccountNumber>
  <EntrustToken>sample string 6</EntrustToken>
  <Tokentype>sample string 7</Tokentype>
  <amount>sample string 5</amount>
  <debitAccountNumber>sample string 1</debitAccountNumber>
  <destinationInstitutionCode>sample string 2</destinationInstitutionCode>
</PapsPaymentParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PapsTransferResponseData
NameDescriptionTypeAdditional information
Responsecode

string

None.

ResponseDescription

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Responsecode": "sample string 1",
  "ResponseDescription": "sample string 2"
}

application/xml, text/xml

Sample:
<PapsTransferResponseData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.ResponseObjs">
  <ResponseDescription>sample string 2</ResponseDescription>
  <Responsecode>sample string 1</Responsecode>
</PapsTransferResponseData>