GET api/PaymentAccount/{id}
Get PaymentAccounts by matching the provided id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ListPaymentAccountsName | Description | Type | Additional information |
---|---|---|---|
PaymentAccountId | integer |
None. |
|
PaymentMethod | string |
None. |
|
PaymentLink | string |
None. |
|
Description | string |
None. |
|
Gateway | string |
None. |
|
PaymentAccountName | string |
None. |
|
IsActive | boolean |
None. |
|
IsDeleted | boolean |
None. |
|
CreatedDateTime | date |
None. |
|
LastUpdatedDateTime | date |
None. |
Response Formats
application/json, text/json
Sample:
{ "PaymentAccountId": 1, "PaymentMethod": "sample string 2", "PaymentLink": "sample string 3", "Description": "sample string 4", "Gateway": "sample string 5", "PaymentAccountName": "sample string 6", "IsActive": true, "IsDeleted": true, "CreatedDateTime": "2025-07-18T16:16:12.516664+00:00", "LastUpdatedDateTime": "2025-07-18T16:16:12.516664+00:00" }
application/xml, text/xml
Sample:
<ListPaymentAccounts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers"> <CreatedDateTime>2025-07-18T16:16:12.516664+00:00</CreatedDateTime> <Description>sample string 4</Description> <Gateway>sample string 5</Gateway> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <LastUpdatedDateTime>2025-07-18T16:16:12.516664+00:00</LastUpdatedDateTime> <PaymentAccountId>1</PaymentAccountId> <PaymentAccountName>sample string 6</PaymentAccountName> <PaymentLink>sample string 3</PaymentLink> <PaymentMethod>sample string 2</PaymentMethod> </ListPaymentAccounts>