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-05T21:17:25.0227268+03:00", "description": "sample string 2", "amount": 3.0, "dealerID": "45cacc08-e99e-462a-a1a8-43157da89202", "id": "78c6ef04-6b95-44ee-888b-ecfe9985b6d7", "companyID": "4223fced-ed76-49db-aaf8-5b8b137b2e68" }
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>4223fced-ed76-49db-aaf8-5b8b137b2e68</CompanyID> <ID>78c6ef04-6b95-44ee-888b-ecfe9985b6d7</ID> <Amount>3</Amount> <Date>2025-08-05T21:17:25.0227268+03:00</Date> <DealerID>45cacc08-e99e-462a-a1a8-43157da89202</DealerID> <Description>sample string 2</Description> </DealerPaymentUpdateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"date":"2025-08-05T21:17:25.0227268+03:00","description":"sample string 2","amount":3.0,"dealerID":"45cacc08-e99e-462a-a1a8-43157da89202","id":"78c6ef04-6b95-44ee-888b-ecfe9985b6d7","companyID":"4223fced-ed76-49db-aaf8-5b8b137b2e68"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.