GET PaymentsMethods/{id}
Gets a paymentsMethod by it's ID, represented as PaymentsMethodDto.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the paymentsMethod. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The paymentsMethod data.
PaymentsMethodDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| NetworkId | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| Description | string |
None. |
|
| Total | decimal number |
None. |
|
| UpdateDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "a4f5d863-e828-4c92-aabc-591bcf79767c",
"NetworkId": "a22e6105-6f37-40f3-9ef7-c2993b69ac0d",
"Code": "sample string 3",
"Description": "sample string 4",
"Total": 1.0,
"UpdateDate": "2026-09-10T10:27:17.4288482Z"
}
application/xml, text/xml
Sample:
<PaymentsMethodDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model"> <Code>sample string 3</Code> <Description>sample string 4</Description> <Id>a4f5d863-e828-4c92-aabc-591bcf79767c</Id> <NetworkId>a22e6105-6f37-40f3-9ef7-c2993b69ac0d</NetworkId> <Total>1</Total> <UpdateDate>2026-09-10T10:27:17.4288482Z</UpdateDate> </PaymentsMethodDto>