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.
PaymentsMethodDtoName | 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": "b197d0d7-2f9d-4cc5-922f-907a63c80d5e", "NetworkId": "1a564ca4-7c6a-4d3a-84be-a6c9ab3ecbf0", "Code": "sample string 3", "Description": "sample string 4", "Total": 1.0, "UpdateDate": "2025-09-13T08:03:23.4431319Z" }
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>b197d0d7-2f9d-4cc5-922f-907a63c80d5e</Id> <NetworkId>1a564ca4-7c6a-4d3a-84be-a6c9ab3ecbf0</NetworkId> <Total>1</Total> <UpdateDate>2025-09-13T08:03:23.4431319Z</UpdateDate> </PaymentsMethodDto>