POST api/ESSystem/v1/Reminders/AddReminder
Request Information
URI Parameters
None.
Body Parameters
ESCounterReminder| Name | Description | Type | Additional information |
|---|---|---|---|
| CounterReminderID | globally unique identifier |
None. |
|
| UserGuid | globally unique identifier |
None. |
|
| CounterAccount | globally unique identifier |
None. |
|
| ReminderDate | date |
None. |
|
| Note | string |
None. |
|
| HasFired | boolean |
None. |
|
| LocalID | integer |
None. |
|
| AccountName | string |
None. |
|
| CounterID | integer |
None. |
|
| AreaName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CounterReminderID": "c8c229b5-1972-4194-86eb-8b040751ff5c",
"UserGuid": "8992a155-e5bf-43f9-ba04-053839845277",
"CounterAccount": "4d63439d-025c-4eb1-ab0f-3fe792acccca",
"ReminderDate": "2026-09-04T20:02:09.8151072+03:00",
"Note": "sample string 5",
"HasFired": true,
"LocalID": 7,
"AccountName": "sample string 8",
"CounterID": 9,
"AreaName": "sample string 10"
}
application/xml, text/xml
Sample:
<ESCounterReminder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccurPluse.Models.Structures.ES"> <AccountName>sample string 8</AccountName> <AreaName>sample string 10</AreaName> <CounterAccount>4d63439d-025c-4eb1-ab0f-3fe792acccca</CounterAccount> <CounterID>9</CounterID> <CounterReminderID>c8c229b5-1972-4194-86eb-8b040751ff5c</CounterReminderID> <HasFired>true</HasFired> <LocalID>7</LocalID> <Note>sample string 5</Note> <ReminderDate>2026-09-04T20:02:09.8151072+03:00</ReminderDate> <UserGuid>8992a155-e5bf-43f9-ba04-053839845277</UserGuid> </ESCounterReminder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Error | integer |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Error": 1,
"Message": "sample string 2",
"Data": {}
}
application/xml, text/xml
Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Core.Common"> <Data /> <Error>1</Error> <Message>sample string 2</Message> </ApiResult>