POST api/Posting/PostBridgePosting
Request Information
URI Parameters
None.
Body Parameters
CbaInternalPostingRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| DebitAccountNumber | string |
None. |
|
| CreditAccountNumber | string |
None. |
|
| Amount | decimal number |
None. |
|
| Narration | string |
None. |
|
| TransactionReference | string |
None. |
|
| CheckSum | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DebitAccountNumber": "sample string 1",
"CreditAccountNumber": "sample string 2",
"Amount": 3.1,
"Narration": "sample string 4",
"TransactionReference": "sample string 5",
"CheckSum": "sample string 6"
}
application/xml, text/xml
Sample:
<CbaInternalPostingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject"> <Amount>3.1</Amount> <CheckSum>sample string 6</CheckSum> <CreditAccountNumber>sample string 2</CreditAccountNumber> <DebitAccountNumber>sample string 1</DebitAccountNumber> <Narration>sample string 4</Narration> <TransactionReference>sample string 5</TransactionReference> </CbaInternalPostingRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PostingResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | string |
None. |
|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| TransactionReference | string |
None. |
|
| ProcessingID | string |
None. |
|
| NipSession | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": "sample string 1",
"Success": true,
"Message": "sample string 3",
"TransactionReference": "sample string 4",
"ProcessingID": "sample string 5",
"NipSession": "sample string 6"
}
application/xml, text/xml
Sample:
<PostingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject"> <Message>sample string 3</Message> <NipSession>sample string 6</NipSession> <ProcessingID>sample string 5</ProcessingID> <ResponseCode>sample string 1</ResponseCode> <Success>true</Success> <TransactionReference>sample string 4</TransactionReference> </PostingResponse>