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": "ddc2283f-c45c-4e50-9df2-3bdacaa45d0f",
"UserGuid": "6fa39202-61d3-4169-9f54-aee45a950866",
"CounterAccount": "c375827f-d38c-4aac-a424-a3da1d5b35a9",
"ReminderDate": "2026-04-09T16:01:23.3016377+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>c375827f-d38c-4aac-a424-a3da1d5b35a9</CounterAccount> <CounterID>9</CounterID> <CounterReminderID>ddc2283f-c45c-4e50-9df2-3bdacaa45d0f</CounterReminderID> <HasFired>true</HasFired> <LocalID>7</LocalID> <Note>sample string 5</Note> <ReminderDate>2026-04-09T16:01:23.3016377+03:00</ReminderDate> <UserGuid>6fa39202-61d3-4169-9f54-aee45a950866</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>