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": "e8c2244a-bb7e-4009-b9a4-e334b785faa9",
"UserGuid": "7bcea915-2799-413e-ab75-9902df9f864b",
"CounterAccount": "a7d33348-0332-462b-81cd-e34b9b7dce06",
"ReminderDate": "2026-07-27T01:19:01.2796083+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>a7d33348-0332-462b-81cd-e34b9b7dce06</CounterAccount> <CounterID>9</CounterID> <CounterReminderID>e8c2244a-bb7e-4009-b9a4-e334b785faa9</CounterReminderID> <HasFired>true</HasFired> <LocalID>7</LocalID> <Note>sample string 5</Note> <ReminderDate>2026-07-27T01:19:01.2796083+03:00</ReminderDate> <UserGuid>7bcea915-2799-413e-ab75-9902df9f864b</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>