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-08-05T21:16:15.0499789+03:00", "isDone": true, "companyID": "04721d0a-d431-4d0b-8dd8-32e53aebb105", "accountID": "68c566bd-c45d-443c-bee5-b5d64c8664ec", "invoiceID": "12156b3e-2c8b-4454-b60b-e1c0ecfa36fc", "checkAndBillID": "5ff92c7a-74ef-4690-99e7-2f678d659b3d", "creditID": "00e7f422-8ad1-473e-af1a-e7b2c16af6a0", "serviceReceiptID": "1cd4c0c8-77f1-429e-abf3-7eb033a690ca" }
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>68c566bd-c45d-443c-bee5-b5d64c8664ec</AccountID> <CheckAndBillID>5ff92c7a-74ef-4690-99e7-2f678d659b3d</CheckAndBillID> <Color>sample string 1</Color> <CompanyID>04721d0a-d431-4d0b-8dd8-32e53aebb105</CompanyID> <CreditID>00e7f422-8ad1-473e-af1a-e7b2c16af6a0</CreditID> <Date>2025-08-05T21:16:15.0499789+03:00</Date> <InvoiceID>12156b3e-2c8b-4454-b60b-e1c0ecfa36fc</InvoiceID> <IsDone>true</IsDone> <Note>sample string 3</Note> <ReminderType>Invoice</ReminderType> <ServiceReceiptID>1cd4c0c8-77f1-429e-abf3-7eb033a690ca</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-08-05T21:16:15.0499789+03:00","isDone":true,"companyID":"04721d0a-d431-4d0b-8dd8-32e53aebb105","accountID":"68c566bd-c45d-443c-bee5-b5d64c8664ec","invoiceID":"12156b3e-2c8b-4454-b60b-e1c0ecfa36fc","checkAndBillID":"5ff92c7a-74ef-4690-99e7-2f678d659b3d","creditID":"00e7f422-8ad1-473e-af1a-e7b2c16af6a0","serviceReceiptID":"1cd4c0c8-77f1-429e-abf3-7eb033a690ca"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.