POST api/v1/transaction/post-smart-transaction

Request Information

URI Parameters

None.

Body Parameters

FirstExpressTransactionRequest
NameDescriptionTypeAdditional information
DebitAccount

string

Required

Matching regular expression pattern: (^[0-9]+$)

BenAccount

string

Matching regular expression pattern: (^[0-9]+$)

Amount

decimal number

None.

TranType

string

Matching regular expression pattern: (^[ A-Za-z0-9.^/-]+$)

ClientReferenceId

string

Matching regular expression pattern: (^[ A-Za-z0-9.^/-]+$)

RequestId

string

Required

Matching regular expression pattern: (^(?=.{4,50}$)([ A-Za-z0-9._|/-]+$))

CountryId

string

Required

Request Formats

application/json, text/json

Sample:
{
  "DebitAccount": "sample string 1",
  "BenAccount": "sample string 2",
  "Amount": 3.0,
  "TranType": "sample string 4",
  "ClientReferenceId": "sample string 5",
  "RequestId": "sample string 6",
  "CountryId": "sample string 7"
}

application/xml, text/xml

Sample:
<FirstExpressTransactionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FirstBank.FIBridge.CoreObject.DataTransferObjects">
  <CountryId>sample string 7</CountryId>
  <RequestId>sample string 6</RequestId>
  <Amount>3</Amount>
  <BenAccount>sample string 2</BenAccount>
  <ClientReferenceId>sample string 5</ClientReferenceId>
  <DebitAccount>sample string 1</DebitAccount>
  <TranType>sample string 4</TranType>
</FirstExpressTransactionRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.