# \_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:

```
{"error":"missing or invalid parameter: id"}
```

If the "val" parameter is not set:

```
{"error":"missing or invalid parameter: val"}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fieldmotion.com/fieldmotion-api-docs/jobrecurrence/_rename.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
