Skip to main content
GET
/
api
/
crm
/
reminders
/
{id}
{
  "BusinessId": 123,
  "BusinessName": "<string>",
  "Name": "<string>",
  "ForAllContacts": true,
  "ForAllMembers": true,
  "ForAllChildLocations": true,
  "CoworkerId": 123,
  "Tariffs": [
    123
  ],
  "ReminderType": 123,
  "ReminderDate": "<string>",
  "DaysAfterSignup": 123,
  "ProductId": 123,
  "ProductName": "<string>",
  "SurveyId": 123,
  "SurveyName": "<string>",
  "DaysAfterRenewal": 123,
  "DaysBeforeRenewal": 123,
  "ReminderAction": 123,
  "Email": "<string>",
  "CannedResponseId": 123,
  "CannedResponseName": "<string>",
  "NextProcessTime": "<string>",
  "Resources": [
    123
  ],
  "OnlySendToTeamPayingMembers": true,
  "OnlySendToActiveCoworkers": true,
  "BlockingPeriodMinutes": 123,
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the Reminder-Read role.

Path Parameters

id
integer
required
The Id of the Reminder record to retrieve.

Code Examples

curl -X GET \
  "https://spaces.nexudus.com/api/crm/reminders/87654321" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

200

BusinessId
integer
Business Id.
BusinessName
string
Business Name.
Name
string
Name.
ForAllContacts
boolean
For All Contacts.
ForAllMembers
boolean
For All Members.
ForAllChildLocations
boolean
For All Child Locations.
CoworkerId
integer
Coworker Id.
Tariffs
integer[]
Tariffs.
ReminderType
integer
Reminder Type.
ReminderDate
string
Reminder Date.
DaysAfterSignup
integer
Days After Signup.
ProductId
integer
Product Id.
ProductName
string
Product Name.
SurveyId
integer
Survey Id.
SurveyName
string
Survey Name.
DaysAfterRenewal
integer
Days After Renewal.
DaysBeforeRenewal
integer
Days Before Renewal.
ReminderAction
integer
Reminder Action.
Email
string
Email.
CannedResponseId
integer
Canned Response Id.
CannedResponseName
string
Canned Response Name.
NextProcessTime
string
Next Process Time.
Resources
integer[]
Resources.
OnlySendToTeamPayingMembers
boolean
Only Send To Team Paying Members.
OnlySendToActiveCoworkers
boolean
Only Send To Active Coworkers.
BlockingPeriodMinutes
integer
Blocking Period Minutes.
Id
integer
Unique record identifier.
UniqueId
string
UUID of the record.
CreatedOn
string
Date and time the record was created (ISO 8601).
UpdatedOn
string
Date and time the record was last updated (ISO 8601).
UpdatedBy
string
Email of the user who last updated this record.
IsNew
boolean
Whether the record was recently created.
SystemId
string
External system identifier.
Example Response
{
  "BusinessId": 0,
  "BusinessName": null,
  "Name": "",
  "ForAllContacts": false,
  "ForAllMembers": false,
  "ForAllChildLocations": false,
  "CoworkerId": null,
  "Tariffs": [],
  "ReminderType": 0,
  "ReminderDate": null,
  "DaysAfterSignup": null,
  "ProductId": null,
  "ProductName": null,
  "SurveyId": null,
  "SurveyName": null,
  "DaysAfterRenewal": null,
  "DaysBeforeRenewal": null,
  "ReminderAction": 0,
  "Email": null,
  "CannedResponseId": null,
  "CannedResponseName": null,
  "NextProcessTime": null,
  "Resources": [],
  "OnlySendToTeamPayingMembers": false,
  "OnlySendToActiveCoworkers": false,
  "BlockingPeriodMinutes": null,
  "Id": 87654321,
  "UpdatedOn": "2025-01-15T10:30:00Z",
  "CreatedOn": "2025-01-10T08:00:00Z",
  "UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "UpdatedBy": "admin@example.com",
  "IsNew": false,
  "SystemId": null,
  "ToStringText": "Reminder Example",
  "LocalizationDetails": null,
  "CustomFields": null
}