Connection Types
Available Connection Types
To view a list of all available connection types, visit GET /api/v1/connection_type
.
This endpoint can be filtered with a search
query param or a system_type
query param
and is subject to change. We include database options and third party API services with
which fidesops can communicate.
GET /api/v1/connection_type | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
|
Required Connection Secrets
To view the secrets needed to authenticate with a given connection, visit GET /api/v1/connection_type/<connection_type>/secret
.
Example
GET /api/v1/connection_type/sentry/secret | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
Setting up a SaaS Connector from a Template
To create all the resources necessary to set up a SaaS Connector in one request, you can create a connector from a template.
This creates a saas
ConnectionConfig for you with your supplied name and description, with your supplied secrets
.
In the example below, we're creating a mailchimp
saas connector, so you should supply the relevant mailchimp secrets
.
Your instance_key
will become the identifier for the related DatasetConfig
resource. By default, the saas connection config
is enabled, with write access.
POST /connection/instantiate/mailchimp | |
---|---|
1 2 3 4 5 6 7 8 9 10 |
|