POST api/P2P/GetP2PCardWiseTransaction
Request Information
URI Parameters
None.
Body Parameters
TransactionOutputModelName | Description | Type | Additional information |
---|---|---|---|
ID | globally unique identifier |
None. |
|
TransactionUserId | globally unique identifier |
None. |
|
SenderCardId | globally unique identifier |
None. |
|
ReceiverCardId | globally unique identifier |
None. |
|
Amount | decimal number |
None. |
|
DateCreated | date |
None. |
|
FirstName | string |
None. |
|
LastName | string |
None. |
|
ProfileImage | string |
None. |
|
Mobile | string |
None. |
|
Currency | string |
None. |
|
Status | TransferType |
None. |
|
Type | P2PTransferType |
None. |
|
Count | integer |
None. |
|
SenderUserId | globally unique identifier |
None. |
|
ReceiverUserId | globally unique identifier |
None. |
|
CurrentUserBankCardId | globally unique identifier |
None. |
|
TransactionBankCardId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "ID": "4540313d-81f9-41ff-a3f7-2604f03ccaf2", "TransactionUserId": "9c74cba9-c58d-429e-bca2-c74836afc5d1", "SenderCardId": "6aa83363-ea73-4992-8a21-c8398bbd0963", "ReceiverCardId": "67adf0a9-d35f-4a36-9bac-8c3798fb2cbf", "Amount": 2.1, "DateCreated": "2023-09-04T04:56:31.9112612+00:00", "FirstName": "sample string 4", "LastName": "sample string 5", "ProfileImage": "sample string 6", "Mobile": "sample string 7", "Currency": "sample string 8", "Status": 1, "Type": 1, "Count": 9, "SenderUserId": "7553ffa8-e9d3-4972-a222-e0b7e1ae93bb", "ReceiverUserId": "e97936e3-efae-45cb-8e0f-5c839161b04d", "CurrentUserBankCardId": "cbd7abb1-d90b-4a31-b42d-649f988049ff", "TransactionBankCardId": "c41fdaf6-4375-4408-978a-e9198c095471" }
application/xml, text/xml
Sample:
<TransactionOutputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bankiom.DataLayer.Common"> <Amount>2.1</Amount> <Count>9</Count> <Currency>sample string 8</Currency> <CurrentUserBankCardId>cbd7abb1-d90b-4a31-b42d-649f988049ff</CurrentUserBankCardId> <DateCreated>2023-09-04T04:56:31.9112612+00:00</DateCreated> <FirstName>sample string 4</FirstName> <ID>4540313d-81f9-41ff-a3f7-2604f03ccaf2</ID> <LastName>sample string 5</LastName> <Mobile>sample string 7</Mobile> <ProfileImage>sample string 6</ProfileImage> <ReceiverCardId>67adf0a9-d35f-4a36-9bac-8c3798fb2cbf</ReceiverCardId> <ReceiverUserId>e97936e3-efae-45cb-8e0f-5c839161b04d</ReceiverUserId> <SenderCardId>6aa83363-ea73-4992-8a21-c8398bbd0963</SenderCardId> <SenderUserId>7553ffa8-e9d3-4972-a222-e0b7e1ae93bb</SenderUserId> <Status>Pending</Status> <TransactionBankCardId>c41fdaf6-4375-4408-978a-e9198c095471</TransactionBankCardId> <TransactionUserId>9c74cba9-c58d-429e-bca2-c74836afc5d1</TransactionUserId> <Type>Send</Type> </TransactionOutputModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseViewModelName | Description | Type | Additional information |
---|---|---|---|
Status | boolean |
None. |
|
StatusCode | integer |
None. |
|
Message | string |
None. |
|
Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "Status": true, "StatusCode": 2, "Message": "sample string 3", "Data": {} }
application/xml, text/xml
Sample:
<ResponseViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bankiom.DataLayer.Common"> <Data /> <Message>sample string 3</Message> <Status>true</Status> <StatusCode>2</StatusCode> </ResponseViewModel>