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-04T22:34:56.3651605+03:00", "description": "sample string 2", "amount": 3.0, "dealerID": "3ed04dfe-d1d6-47ef-b926-91e1f552ff9e", "id": "99de1b50-1e9b-471d-9e0c-4cdc64df69e6", "companyID": "c8867d15-4f18-4198-bf56-c87bb763ea53" }
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>c8867d15-4f18-4198-bf56-c87bb763ea53</CompanyID> <ID>99de1b50-1e9b-471d-9e0c-4cdc64df69e6</ID> <Amount>3</Amount> <Date>2025-08-04T22:34:56.3651605+03:00</Date> <DealerID>3ed04dfe-d1d6-47ef-b926-91e1f552ff9e</DealerID> <Description>sample string 2</Description> </DealerPaymentUpdateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"date":"2025-08-04T22:34:56.3651605+03:00","description":"sample string 2","amount":3.0,"dealerID":"3ed04dfe-d1d6-47ef-b926-91e1f552ff9e","id":"99de1b50-1e9b-471d-9e0c-4cdc64df69e6","companyID":"c8867d15-4f18-4198-bf56-c87bb763ea53"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.