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": "863fdd74-67e9-469a-a345-90b6c17f50e3",
"UserGuid": "5b5d102f-f6f3-4553-8539-f2dca516226d",
"CounterAccount": "fa3784ca-efed-4004-a2c9-36f2cd7472e8",
"ReminderDate": "2026-06-21T11:48:28.4397264+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>fa3784ca-efed-4004-a2c9-36f2cd7472e8</CounterAccount> <CounterID>9</CounterID> <CounterReminderID>863fdd74-67e9-469a-a345-90b6c17f50e3</CounterReminderID> <HasFired>true</HasFired> <LocalID>7</LocalID> <Note>sample string 5</Note> <ReminderDate>2026-06-21T11:48:28.4397264+03:00</ReminderDate> <UserGuid>5b5d102f-f6f3-4553-8539-f2dca516226d</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>