For the complete documentation index, see llms.txt. This page is also available as Markdown.

_rename

Change the Name of the Recurrence.

Parameters

id

The ID of the Recurrence.

val

Name to be set for the Recurrence.

Example

FM_api('JobRecurrence_rename', [
    'id' => '123',
    'val' => 'New Name'
    ]
);

Result

On Success

{'ok':1}

On Failure

If the "id" parameter is not set or has an integer value less than 1:

If the "val" parameter is not set:

Last updated