## Button "Download settings.json"
The download button downloads the definition of this one database in the format described in [[Settings]], for use in on premises environments. The file excludes all credentials, such as password and tokens. These must be added manually.
The file resembles the following structure:
```json
{ "$comment":
[ "settings-acme-8280-activecampaign.json"
, ""
, " Purpose:"
, " Configuration of the available databases."
, ""
, " The structure of this file is defined in invantive-databases.schema.json,"
, " available on https://documentation.invantive.com in the section Invantive SQL."
]
, "version": "5"
, "groups":
[ { "id": "91322237-aebf-447a-9308-81592489f6ba"
, "sortingOrder": 2147483647
, "databases":
[ { "name": "ActiveCampaign e4a0fed"
, "id": "a78beb84-7036-4977-9e1a-6a2730c94943"
, "shortDescription": "Database 8280"
, "description": "Database 8280"
, "sortingOrder": 1
, "authentication": "Default"
, "manual": true
, "dataContainers":
[ { "kind": "dataContainer"
, "order": 10
, "alias": "acn"
, "provider": "ActiveCampaign"
, "comment": "ActiveCampaign"
, "connectionString": "account-name=invantivebv1751118755"
, "userLogonCodeMode": "Auto"
, "passwordMode": "Auto"
, "allowConnectionPooling": false
}
]
}
]
}
]
}
```
## Button "Download settings.xml"
Next to the button above, a second button downloads the same definition in the XML format described in [[Settings.xml]]. Both buttons require the same authorisation, so either both are offered or neither is. Use the XML format only when the file has to be read by a product of release 26.0 or earlier.
The file resembles the following structure:
```xml
<?xml version="1.0" encoding="utf-16"?>
<!--
Settings.xml databases configuration file for use with Invantive products.
Generated by: Invantive Cloud.
Database: - ActiveCampaign e4a0fed: Database 8280
Created: 24-06-2026 08:03:36 (UTC)
-->
<settings
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
version="5">
<group
id="91322237-aebf-447a-9308-81592489f6ba"
sortingOrder="2147483647"
<connection
name="ActiveCampaign e4a0fed"
manual="true"
authentication="Default"
sortingOrder="1"
shortDescription="Database 8280"
description="Database 8280"
id="a78beb84-7036-4977-9e1a-6a2730c94943">
<database
order="10"
comment="ActiveCampaign"
alias="acn"
provider="ActiveCampaign"
userLogonCodeMode="Auto"
passwordMode="Auto"
connectionString="account-name=invantivebv1751118755"
AllowConnectionPooling="false" />
</connection>
</group>
</settings>
```