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-29T12:25:39.8082579+03:00", "isDone": true, "companyID": "c7f03aba-7b2b-4c80-9477-9096dac1c9bf", "accountID": "6029adf3-28d8-4bb5-9c50-a718f5ba56a9", "invoiceID": "8d4f698e-ccf2-4ed9-8dee-ef72a0b8f986", "checkAndBillID": "7b4d1b97-4be5-4908-9e7e-fad498a792ae", "creditID": "b6d9f5d4-09ea-4d1c-8d16-2eb2aa638f2c", "serviceReceiptID": "fcaabf2e-c160-4f4e-989e-7b7f93e156fa" }
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>6029adf3-28d8-4bb5-9c50-a718f5ba56a9</AccountID> <CheckAndBillID>7b4d1b97-4be5-4908-9e7e-fad498a792ae</CheckAndBillID> <Color>sample string 1</Color> <CompanyID>c7f03aba-7b2b-4c80-9477-9096dac1c9bf</CompanyID> <CreditID>b6d9f5d4-09ea-4d1c-8d16-2eb2aa638f2c</CreditID> <Date>2025-08-29T12:25:39.8082579+03:00</Date> <InvoiceID>8d4f698e-ccf2-4ed9-8dee-ef72a0b8f986</InvoiceID> <IsDone>true</IsDone> <Note>sample string 3</Note> <ReminderType>Invoice</ReminderType> <ServiceReceiptID>fcaabf2e-c160-4f4e-989e-7b7f93e156fa</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-29T12:25:39.8082579+03:00","isDone":true,"companyID":"c7f03aba-7b2b-4c80-9477-9096dac1c9bf","accountID":"6029adf3-28d8-4bb5-9c50-a718f5ba56a9","invoiceID":"8d4f698e-ccf2-4ed9-8dee-ef72a0b8f986","checkAndBillID":"7b4d1b97-4be5-4908-9e7e-fad498a792ae","creditID":"b6d9f5d4-09ea-4d1c-8d16-2eb2aa638f2c","serviceReceiptID":"fcaabf2e-c160-4f4e-989e-7b7f93e156fa"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.