Jira API Configuration
Request
POST https://api.fivetran.com/v1/connections
{ "group_id": "group_id", "service": "jira", "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": { "sync_mode": "ALL | CUSTOM", "path": "path", "password": "password", "auth_type": "BASIC | OAUTH", "projects": [ 0 ], "port": 443, "on_premise": true, "host": "mycompany.atlassian.net", "user": "user", "schema": "schema_name" } }
Config parameters
| Name | Description |
|---|---|
sync_mode | Whether to sync all projects or specific projects. |
path | A URL subdirectory where the Jira instance is working. |
password | The Jira user's password. |
auth_type | Authorization type. |
projects | Specific projects to sync. Must be populated if syncMode is set to CUSTOM. |
port | The Jira service host port. |
on_premise | Whether the Jira instance is local or in cloud. |
host | The Jira service host address. |
user | The Jira username. |
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:
- By specifying the values for the
host,port,userandpasswordparameters in the request.POST https://api.fivetran.com/v1/connections{ "service": "jira", "group_id": "group_id", "config": { "host": "mycompany.atlassian.net", "port": 443, "user": "user", "password": "password" } } By using the Connect Card or the Fivetran dashboard.