Connecting Interzoid to your PostgreSQL database is straightforward. All you need is a connection string that tells Interzoid how to reach your Postgres instance. You can copy and paste the format below and replace the placeholders with your own values.
postgres://{user}:{password}@{host}:{port}/{database}?sslmode=require
Replace {user}, {password}, {host}, {port}, and
{database} with your own values. The parameter sslmode=require ensures the connection is secure.
This is all you need to get started.
For additional security, we recommend creating a dedicated read-only user account. This enables you to only provide the data that you want to Interzoid to be able to view for processing.
interzoid_app_ro).
postgres://interzoid_app_ro:StrongPassword123@pg-host.mycompany.com:5432/interzoid_db?sslmode=require
Using a dedicated read-only user keeps your database secure and ensures third parties only have the level of access you allow.
Questions? Contact support@interzoid.com.