# loadRecord

Loads a record, based on the current config, from brixxbox server and returns a promise. This is a async function. You have to await the result, if you want to use it. This function will not display the record, it will just load and return it. To display the record, use the function result with [displayRecord](https://brixxbox.gitbook.io/brixxbox-documentation/data-storage/displayrecord).

### Parameters

The first parameter is a control with the key value, that will be used to find the record (like an address number)

### Example Usages

Simple (pay attention to the **await** keyword)

```javascript
   let myRecord = await brixxApi.loadRecord("myKeyControl");
```


---

# 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://brixxbox.gitbook.io/brixxbox-documentation/client-api-reference/functions/loadrecord.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.
