# Authority

[Authority](https://instadapp-3.gitbook.io/instadapp-docs/instadapp-gui/authorities) is access and control to your DSA account.&#x20;

## Add Authority

This connector adds additional accounts as Authorities to the DSA

```
spells.add({
  connector: "authority",
  method: "add",
  args: [authority]
});
```

| Parameter | Type    | Description                               |
| --------- | ------- | ----------------------------------------- |
| authority | address | The address to be given authority access. |

## Remove Authority

This connector removes authorities from the DSA

```
spells.add({
  connector: "authority",
  method: "remove",
  args: [authority]
});
```

| Parameter | Type    | Description                                      |
| --------- | ------- | ------------------------------------------------ |
| authority | address | The address to be removed from authority access. |

{% hint style="warning" %}
Please be careful when adjusting or changing authority. **Authorities have the complete control and access to your DSA**. Make sure that you only add addresses you control as Authorities.
{% endhint %}

See More: Advanced Topics - Temp Authority<br>
