# Authorized Users

## Assigning authorized users

<figure><img src="/files/hDQwKeZjLquLWXhXKLtu" alt="Dynamic data record authorized users"><figcaption><p>Dynamic data record authorized users</p></figcaption></figure>

1. Open Jigx Management, select the **solution** option, and browse to the required solution.
2. Click on the **Data** option in the navigation pane.
3. Select the required **table** from the Tables list in the right-hand pane.
4. Click on an individual row to open the **Edit record** pane.
5. Click on the **Authorized Users** tab.
6. Add users either as Owners or Members. Groups can only be added as Members.
7. Click **Save**.
8. Selecting the **Custom** restriction requires selecting specific groups, owners, and members.
9. Open the **Column settings** by clicking the gear icon at the top of the data table and check the Authorized Users checkbox. The Authorized User column is now visible in the table.

**Authorized users** can be configured in the YAML in Jigx Builder by specifying values for the `Owner` and `Member` keys in the CREATE and UPDATE methods on `action.execute-entity` and `action.submit-form` for the `data_provider_Dynamic`

{% code title="Dynamic -data-provider" %}

```yaml
actions:
  - children:
      - type: action.submit-form
        options:
          formId: expense-form
          provider: DATA_PROVIDER_DYNAMIC
          title: Create Record
          entity: default/charts
          method: create
          goBack: previous
          authorized:
            members:
            - 'hr-group'
            - 'finance-group'
            - 'mary@global.com'
            owners:
            - =@ctx.components.email.state.value  
```

{% endcode %}


---

# 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.jigx.com/administration/solutions/row-level-security/authorized-users.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.
