<aside> ℹ️ As a platform, Captain Data values its SaaS Partners a lot.
The following lists all Partners integrated inside the Captain Data's platform.
</aside>
<aside> ℹ️
Want to integrate your solution with Captain Data? Here’s our complete documentation to provide us with a detailed JSON file that we’ll implement for you 🙂
</aside>
The auth section is used to specify the authentication method required for the integration. We support different types of authentication, including API keys and OAuth tokens.
apiKey
: Use when the integration requires an API key.OAuth
: Use for OAuth-based integrations.Authorization
for bearer tokens or api_key
).header
: The key is passed in the headers.uri
: The key is included in the URL.Bearer
for OAuth tokens)."auth": {
"type": "apiKey",
"key": "Authorization",
"position": "header",
"prefix": "Bearer "
}
"auth": {
"type": "apiKey",
"key": "api_key",
"position": "uri"
}