POST api/Reminder/Update
Request Information
URI Parameters
None.
Body Parameters
ReminderUpdateDtoName | Description | Type | Additional information |
---|---|---|---|
ReminderType | ReminderType |
None. |
|
Color | string |
None. |
|
Title | string |
None. |
|
Note | string |
None. |
|
Date | date |
None. |
|
IsDone | boolean |
None. |
|
AccountID | globally unique identifier |
None. |
|
InvoiceID | globally unique identifier |
None. |
|
CheckAndBillID | globally unique identifier |
None. |
|
CreditID | globally unique identifier |
None. |
|
ServiceReceiptID | globally unique identifier |
None. |
|
ID | globally unique identifier |
Required |
|
CompanyID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "reminderType": 1, "color": "sample string 1", "title": "sample string 2", "note": "sample string 3", "date": "2025-08-04T22:34:56.4707663+03:00", "isDone": true, "accountID": "8d24d110-5c60-4cf9-9f24-e0d610c462ba", "invoiceID": "0b21fe13-b476-4564-8cfd-a1bbb165afa1", "checkAndBillID": "4964a6fa-2134-40c5-9652-594f2dda5c29", "creditID": "088d0d4c-e66a-446f-879b-7ba29247d26c", "serviceReceiptID": "c9f92d8d-77a2-4f11-9c4b-e72eb0ab1814", "id": "65be54f1-53bf-4a45-92b5-25fbf24b01d4", "companyID": "b15c3eb4-4b8c-4e38-b97a-059e2774118b" }
application/xml, text/xml
Sample:
<ReminderUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs"> <CompanyID>b15c3eb4-4b8c-4e38-b97a-059e2774118b</CompanyID> <ID>65be54f1-53bf-4a45-92b5-25fbf24b01d4</ID> <AccountID>8d24d110-5c60-4cf9-9f24-e0d610c462ba</AccountID> <CheckAndBillID>4964a6fa-2134-40c5-9652-594f2dda5c29</CheckAndBillID> <Color>sample string 1</Color> <CreditID>088d0d4c-e66a-446f-879b-7ba29247d26c</CreditID> <Date>2025-08-04T22:34:56.4707663+03:00</Date> <InvoiceID>0b21fe13-b476-4564-8cfd-a1bbb165afa1</InvoiceID> <IsDone>true</IsDone> <Note>sample string 3</Note> <ReminderType>Invoice</ReminderType> <ServiceReceiptID>c9f92d8d-77a2-4f11-9c4b-e72eb0ab1814</ServiceReceiptID> <Title>sample string 2</Title> </ReminderUpdateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"reminderType":1,"color":"sample string 1","title":"sample string 2","note":"sample string 3","date":"2025-08-04T22:34:56.4707663+03:00","isDone":true,"accountID":"8d24d110-5c60-4cf9-9f24-e0d610c462ba","invoiceID":"0b21fe13-b476-4564-8cfd-a1bbb165afa1","checkAndBillID":"4964a6fa-2134-40c5-9652-594f2dda5c29","creditID":"088d0d4c-e66a-446f-879b-7ba29247d26c","serviceReceiptID":"c9f92d8d-77a2-4f11-9c4b-e72eb0ab1814","id":"65be54f1-53bf-4a45-92b5-25fbf24b01d4","companyID":"b15c3eb4-4b8c-4e38-b97a-059e2774118b"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.