Skip to main content

REMINDER API Reference

Module Information

Service Files:

  • Private: service/private/reminder.js

Available Services: 5 Documented Services: 5


reminder.create

Create a new reminder for the current user. Stores a reminder task object linked to the authenticated user via the reminder_create stored procedure.

PropertyValue
ScopeHub (requires hub context)
PermissionWrite (4)

Endpoint:

https://hostname/-/svc/reminder.create

Parameters

ParameterTypeRequiredDefaultDescription
taskobjectYes--

Returns

FieldTypeDescription
typeany-
descriptionany-
propertiesany-

Possible Errors

Error codes not documented


reminder.get

Get a specific reminder by ID, node ID, or hub ID. Retrieves a single reminder record matching the provided lookup criteria for the authenticated user.

PropertyValue
ScopeHub (requires hub context)
PermissionRead (2)

Endpoint:

https://hostname/-/svc/reminder.get

Parameters

ParameterTypeRequiredDefaultDescription
reminder_idstringNo--
nidstringNo--
hub_idstringNo--

Returns

FieldTypeDescription
typeany-
descriptionany-
propertiesany-

Possible Errors

Error codes not documented


reminder.list

List all reminders for the current user. Returns the full list of reminder records owned by the authenticated user via the reminder_list stored procedure.

PropertyValue
ScopeHub (requires hub context)
PermissionRead (2)

Endpoint:

https://hostname/-/svc/reminder.list

Parameters

No parameters

Returns

FieldTypeDescription
typeany-
descriptionany-
itemsobject-
items.idstring-

Possible Errors

Error codes not documented


reminder.remove

Remove a reminder by ID. Deletes the reminder record permanently via the reminder_remove stored procedure and returns the deleted record ID.

PropertyValue
ScopeHub (requires hub context)
PermissionWrite (4)

Endpoint:

https://hostname/-/svc/reminder.remove

Parameters

ParameterTypeRequiredDefaultDescription
idstringYes--

Returns

FieldTypeDescription
typeany-
descriptionany-
propertiesany-

Possible Errors

Error codes not documented


reminder.update

Update an existing reminder. Replaces the task data of an existing reminder identified by ID via the reminder_update stored procedure.

PropertyValue
ScopeHub (requires hub context)
PermissionWrite (4)

Endpoint:

https://hostname/-/svc/reminder.update

Parameters

ParameterTypeRequiredDefaultDescription
idstringYes--
taskobjectYes--

Returns

FieldTypeDescription
typeany-
descriptionany-

Possible Errors

Error codes not documented


  • ACL System - Permission model
  • Service Routing - URL patterns
  • Error Handling - Error codes