POST api/v1/transfer/bill-payment
Request Information
URI Parameters
None.
Body Parameters
BillPaymentRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| RequestId | string |
None. |
|
| CountryId | string |
None. |
|
| SourceAccount | string |
None. |
|
| ProductId | integer |
None. |
|
| ReferenceNumber | string |
None. |
|
| Amount | decimal number |
None. |
|
| Fee | decimal number |
None. |
|
| Narration | string |
None. |
|
| PhoneNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"RequestId": "sample string 1",
"CountryId": "sample string 2",
"SourceAccount": "sample string 3",
"ProductId": 4,
"ReferenceNumber": "sample string 5",
"Amount": 6.0,
"Fee": 7.0,
"Narration": "sample string 8",
"PhoneNumber": "sample string 9"
}
application/xml, text/xml
Sample:
<BillPaymentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FirstBank.SingleBiller.CoreObject.DataTransferObjects"> <Amount>6</Amount> <CountryId>sample string 2</CountryId> <Fee>7</Fee> <Narration>sample string 8</Narration> <PhoneNumber>sample string 9</PhoneNumber> <ProductId>4</ProductId> <ReferenceNumber>sample string 5</ReferenceNumber> <RequestId>sample string 1</RequestId> <SourceAccount>sample string 3</SourceAccount> </BillPaymentRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.