POST api/Reminder/Add
Request Information
URI Parameters
None.
Body Parameters
ReminderAddDtoName | Description | Type | Additional information |
---|---|---|---|
ReminderType | ReminderType |
None. |
|
Color | string |
None. |
|
Title | string |
None. |
|
Note | string |
None. |
|
Date | date |
None. |
|
IsDone | boolean |
None. |
|
CompanyID | globally unique identifier |
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. |
Request Formats
application/json, text/json
Sample:
{ "reminderType": 1, "color": "sample string 1", "title": "sample string 2", "note": "sample string 3", "date": "2025-07-08T21:35:27.590114+03:00", "isDone": true, "companyID": "f30573f6-9f64-4c0c-94ba-1ec367e48627", "accountID": "6a410cdd-2504-451b-969a-4cf80b201dc3", "invoiceID": "650ec7ce-2cdf-44d8-b185-67f4e374783e", "checkAndBillID": "afc6d18b-07cf-48e8-a8ec-35c56b36de9f", "creditID": "0814210f-091d-463c-a27d-dc1772fc93f5", "serviceReceiptID": "fed347fb-c54f-4f65-853c-bbaac7baa58e" }
application/xml, text/xml
Sample:
<ReminderAddDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs"> <AccountID>6a410cdd-2504-451b-969a-4cf80b201dc3</AccountID> <CheckAndBillID>afc6d18b-07cf-48e8-a8ec-35c56b36de9f</CheckAndBillID> <Color>sample string 1</Color> <CompanyID>f30573f6-9f64-4c0c-94ba-1ec367e48627</CompanyID> <CreditID>0814210f-091d-463c-a27d-dc1772fc93f5</CreditID> <Date>2025-07-08T21:35:27.590114+03:00</Date> <InvoiceID>650ec7ce-2cdf-44d8-b185-67f4e374783e</InvoiceID> <IsDone>true</IsDone> <Note>sample string 3</Note> <ReminderType>Invoice</ReminderType> <ServiceReceiptID>fed347fb-c54f-4f65-853c-bbaac7baa58e</ServiceReceiptID> <Title>sample string 2</Title> </ReminderAddDto>
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-07-08T21:35:27.590114+03:00","isDone":true,"companyID":"f30573f6-9f64-4c0c-94ba-1ec367e48627","accountID":"6a410cdd-2504-451b-969a-4cf80b201dc3","invoiceID":"650ec7ce-2cdf-44d8-b185-67f4e374783e","checkAndBillID":"afc6d18b-07cf-48e8-a8ec-35c56b36de9f","creditID":"0814210f-091d-463c-a27d-dc1772fc93f5","serviceReceiptID":"fed347fb-c54f-4f65-853c-bbaac7baa58e"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.