POST api/Transfer/ValidateTransactionPIN

Request Information

URI Parameters

None.

Body Parameters

ValidParam
NameDescriptionTypeAdditional information
phone

string

None.

PIN

string

None.

Amount

string

None.

DebitAccount

string

None.

CreditAccount

string

None.

Request Formats

application/json, text/json

Sample:
{
  "phone": "sample string 1",
  "PIN": "sample string 2",
  "Amount": "sample string 3",
  "DebitAccount": "sample string 4",
  "CreditAccount": "sample string 5"
}

application/xml, text/xml

Sample:
<ValidParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.RequestObjs">
  <Amount>sample string 3</Amount>
  <CreditAccount>sample string 5</CreditAccount>
  <DebitAccount>sample string 4</DebitAccount>
  <PIN>sample string 2</PIN>
  <phone>sample string 1</phone>
</ValidParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SimpleResponse
NameDescriptionTypeAdditional information
Responsecode

string

None.

ResponseDescription

string

None.

phonenumber

string

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<SimpleResponse 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>
  <phonenumber>sample string 3</phonenumber>
</SimpleResponse>