PUT PaymentsMethods/{id}
Updates the paymentsMethod.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the paymentsMethod. |
globally unique identifier |
Required |
Body Parameters
The new data of the paymentsMethod.
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. |
Request Formats
application/json, text/json
Sample:
{
"Id": "a909e9c0-b72f-4dea-86cf-2c5ec2fd93f5",
"NetworkId": "7ffc296a-8d4d-4cc0-b05d-c0f99ef378f9",
"Code": "sample string 3",
"Description": "sample string 4",
"Total": 1.0,
"UpdateDate": "2026-07-27T07:16:49.8913947Z"
}
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>a909e9c0-b72f-4dea-86cf-2c5ec2fd93f5</Id> <NetworkId>7ffc296a-8d4d-4cc0-b05d-c0f99ef378f9</NetworkId> <Total>1</Total> <UpdateDate>2026-07-27T07:16:49.8913947Z</UpdateDate> </PaymentsMethodDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
State of the action.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.