跳到主要内容
版本:Next

Http-Linear

Http-Linear source connector

Description

Read data from the Linear API via HTTP.

Key Features

  • batch
  • stream
  • exactly-once

Options

NameTypeRequiredDefault ValueDescription
urlStringYes-Linear API Endpoint URL
api_keyStringYes-Linear API Key for Authentication
plugin_outputStringNo-The result table name when generating data

Example

source {
Http-Linear {
url = "https://api.linear.app/graphql"
api_key = "your_linear_api_key"
method = "POST"
body = "{\"query\": \"{ issues { nodes { id title } } }\"}"
plugin_output = "linear_data"
}
}