# BOT_NOTECARD_CREATE

Commands bot to create a notecard in the inventory.

## Variables

The following table shows input values (you send them with the API call) and returned output values.

| **Variable** | **Description** |
|----------|-------------|
| `str`    | Name and notecard contents separated by a line break (name\\ncontents here). |
| `id`     | UUID of the folder where the notecard will be stored. Leave blank to use the default **Notecards** folder. |


---

## Comments

The name and contents of the notecard are separated by a newline character (\\n).


---

## Result

Raises the following event:

* [`BOT_NOTECARD_CREATE_REPLY`](/doc/bot_notecard_create_reply-h96sqsuv0C)


---

## Example

```csharp
llMessageLinked(LINK_SET, BOT_NOTECARD_CREATE, "Name\nBody of notecard", "fe7143cc-5cdf-f865-63cd-de98bafa0f70");
```