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-04T22:33:17.1652881+03:00", "isDone": true, "companyID": "2327990d-52e4-4c6c-a027-c95bd1279f10", "accountID": "82cf6ba9-446d-40bc-9dc4-efd49bc13661", "invoiceID": "f5cd58f4-3afb-4185-8b6f-16ff48924089", "checkAndBillID": "8cc23e20-434e-47a8-8d8d-beeeb8053ca6", "creditID": "0f1eaa9e-f87e-47e9-be7e-d1632c233725", "serviceReceiptID": "36a0c415-1fed-4dc4-ad87-3d4099d94009" }
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>82cf6ba9-446d-40bc-9dc4-efd49bc13661</AccountID> <CheckAndBillID>8cc23e20-434e-47a8-8d8d-beeeb8053ca6</CheckAndBillID> <Color>sample string 1</Color> <CompanyID>2327990d-52e4-4c6c-a027-c95bd1279f10</CompanyID> <CreditID>0f1eaa9e-f87e-47e9-be7e-d1632c233725</CreditID> <Date>2025-08-04T22:33:17.1652881+03:00</Date> <InvoiceID>f5cd58f4-3afb-4185-8b6f-16ff48924089</InvoiceID> <IsDone>true</IsDone> <Note>sample string 3</Note> <ReminderType>Invoice</ReminderType> <ServiceReceiptID>36a0c415-1fed-4dc4-ad87-3d4099d94009</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-04T22:33:17.1652881+03:00","isDone":true,"companyID":"2327990d-52e4-4c6c-a027-c95bd1279f10","accountID":"82cf6ba9-446d-40bc-9dc4-efd49bc13661","invoiceID":"f5cd58f4-3afb-4185-8b6f-16ff48924089","checkAndBillID":"8cc23e20-434e-47a8-8d8d-beeeb8053ca6","creditID":"0f1eaa9e-f87e-47e9-be7e-d1632c233725","serviceReceiptID":"36a0c415-1fed-4dc4-ad87-3d4099d94009"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.