POST api/Dealer/UpdatePayment
Request Information
URI Parameters
None.
Body Parameters
DealerPaymentUpdateDtoName | Description | Type | Additional information |
---|---|---|---|
Date | date |
None. |
|
Description | string |
None. |
|
Amount | decimal number |
None. |
|
DealerID | globally unique identifier |
None. |
|
ID | globally unique identifier |
Required |
|
CompanyID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "date": "2025-08-29T12:26:45.1355788+03:00", "description": "sample string 2", "amount": 3.0, "dealerID": "99663564-5921-441f-bfd3-024830a9cd4d", "id": "d74be7d1-5c36-49b7-b8c3-f756b7df2bc1", "companyID": "0832b2b7-e702-4be6-8828-fc0e4fba7c2a" }
application/xml, text/xml
Sample:
<DealerPaymentUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs"> <CompanyID>0832b2b7-e702-4be6-8828-fc0e4fba7c2a</CompanyID> <ID>d74be7d1-5c36-49b7-b8c3-f756b7df2bc1</ID> <Amount>3</Amount> <Date>2025-08-29T12:26:45.1355788+03:00</Date> <DealerID>99663564-5921-441f-bfd3-024830a9cd4d</DealerID> <Description>sample string 2</Description> </DealerPaymentUpdateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"date":"2025-08-29T12:26:45.1355788+03:00","description":"sample string 2","amount":3.0,"dealerID":"99663564-5921-441f-bfd3-024830a9cd4d","id":"d74be7d1-5c36-49b7-b8c3-f756b7df2bc1","companyID":"0832b2b7-e702-4be6-8828-fc0e4fba7c2a"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.