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-05-24T17:07:59.5229652+03:00", "isDone": true, "companyID": "ab9f3a31-ff85-4b9b-8066-8d30bb59e5f3", "accountID": "aef51986-8615-4157-bf48-38f53897c3a3", "invoiceID": "1e6e02f9-c835-42ef-bf37-916c152f533f", "checkAndBillID": "d517354c-349c-443b-8b05-5929799741c1", "creditID": "e38f20f3-56fd-42f1-a867-0389cd384b3b", "serviceReceiptID": "8b1118a1-e6fd-490f-a191-c3fbca0627ba" }
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>aef51986-8615-4157-bf48-38f53897c3a3</AccountID> <CheckAndBillID>d517354c-349c-443b-8b05-5929799741c1</CheckAndBillID> <Color>sample string 1</Color> <CompanyID>ab9f3a31-ff85-4b9b-8066-8d30bb59e5f3</CompanyID> <CreditID>e38f20f3-56fd-42f1-a867-0389cd384b3b</CreditID> <Date>2025-05-24T17:07:59.5229652+03:00</Date> <InvoiceID>1e6e02f9-c835-42ef-bf37-916c152f533f</InvoiceID> <IsDone>true</IsDone> <Note>sample string 3</Note> <ReminderType>Invoice</ReminderType> <ServiceReceiptID>8b1118a1-e6fd-490f-a191-c3fbca0627ba</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-05-24T17:07:59.5229652+03:00","isDone":true,"companyID":"ab9f3a31-ff85-4b9b-8066-8d30bb59e5f3","accountID":"aef51986-8615-4157-bf48-38f53897c3a3","invoiceID":"1e6e02f9-c835-42ef-bf37-916c152f533f","checkAndBillID":"d517354c-349c-443b-8b05-5929799741c1","creditID":"e38f20f3-56fd-42f1-a867-0389cd384b3b","serviceReceiptID":"8b1118a1-e6fd-490f-a191-c3fbca0627ba"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.