createAccountReminder
Create an account reminder.
Deprecation
The 'createAccountReminder' field is deprecated.This mutation rely on legacy reminder types.
Please use the createReminder mutation which uses the new registry based reminder types instead.
- Marked as deprecated on 2024-11-14.
- Scheduled for removal on or after 2025-04-16.
Arguments
Input variables needed for creating an account reminder.
Possible Errors
Allowed Viewers
Required Permissions
Can create account remindersQuery Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation CreateAccountReminder($input: CreateAccountReminderInput!) {
createAccountReminder(input: $input) {
accountReminder {
...AccountReminderFragment
}
}
}
Variables
{
"input": CreateAccountReminderInput
}
Response
{
"data": {
"createAccountReminder": {
"accountReminder": AccountReminder
}
}
}