# reconfigure

### Overview <a href="#markdown-header-overview" id="markdown-header-overview"></a>

Update AATKit consent arguments after the AATKit is already initialized.

### Syntax <a href="#markdown-header-syntax" id="markdown-header-syntax"></a>

```javascript
reconfigure(config)
```

config **(REQUIRED)**

The JSON object containing configuration. Set parameters listed [here](https://aatkit.gitbook.io/aatkit-cordova-integration/other/reference/other/configuration-json), otherwise AATKit uses default values.

### Examples <a href="#markdown-header-examples" id="markdown-header-examples"></a>

```javascript
AATKitCordova.reconfigureUsingConfiguration({
    consent: {
        type: "simpleConsent",
        nonIABConsent: "withheld"
    }
});
```
