360Learning API Configuration Lite
Request
POST https://api.fivetran.com/v1/connections
{ "group_id": "group_id", "service": "360learning", "trust_certificates": true, "trust_fingerprints": true, "run_setup_tests": true, "paused": false, "pause_after_trial": false, "sync_frequency": 1440, "data_delay_sensitivity": "NORMAL", "data_delay_threshold": 0, "daily_sync_time": "14:00", "schedule_type": "auto", "connect_card_config": { "redirect_uri": "https://your.site/path", "hide_setup_guide": true }, "proxy_agent_id": "proxy_agent_id", "private_link_id": "private_link_id", "networking_method": "Directly", "hybrid_deployment_agent_id": "hybrid_deployment_agent_id", "destination_configuration": { "virtual_warehouse": "virtual_warehouse" }, "destination_schema_names": "SOURCE_NAMING", "config": { "auth_type": "auth1", "company_id": "your_company_id", "api_key": "your_360learning_api_key", "base_url": "us.360learning", "client_secret": "your_360learning_client_secret", "client_id": "your_360learning_client_id", "schema": "schema_name" } }
Config parameters
| Name | Description |
|---|---|
auth_type | Your 360Learning auth type. |
company_id | Your 360Learning company ID. |
api_key | Your 360Learning API Key. |
base_url | Your 360Learning base URL. |
client_secret | Your 360Learning client secret. |
client_id | Your 360Learning client ID. |
schema (required) | Destination schema name. Schema name is permanent and cannot be changed after connection creation |
Authorization
There are two ways to authorize this connector type:
- API Key or OAuth 2.0: By specifying the
auth_typeas"api_key or oauth"and the values for theapi_key,company_id,client_id,client_secretandbase_urlparameters in the request.POST https://api.fivetran.com/v1/connections{ "service": "360learning", "group_id": "group_id", "config": { "api_key": "your_360learning_api_key", "company_id": "your_company_id", "auth_type": "api_key or oauth", "client_id": "your_360learning_client_id", "client_secret": "your_360learning_client_secret", "base_url": "us.360learning" } } By using the Connect Card or the Fivetran dashboard.