Release all connectors affected by namespace change. Includes all JDBC sources and destinations. Also add documentation for normalisation. Prerequisite to actually releasing 0.21.0-alpha.
29 lines
730 B
Markdown
29 lines
730 B
Markdown
# HTTP Request
|
|
|
|
## Overview
|
|
|
|
This source allows you to make any http request an Airbyte source! On each sync, this source makes a single http request to the provided URL. Whatever json body is returned is written to the destination.
|
|
|
|
#### Output schema
|
|
|
|
It contains one stream: `data`. That stream will contain one record which is the json blob returned by the http request.
|
|
|
|
#### Data type mapping
|
|
|
|
`data` is a json blob.
|
|
|
|
#### Features
|
|
|
|
| Feature | Supported? |
|
|
| :--- | :--- |
|
|
| Full Refresh Sync | Yes |
|
|
| Incremental Sync | Coming soon |
|
|
| Namespaces | No |
|
|
|
|
### Getting started
|
|
|
|
#### Setup guide
|
|
|
|
Provide a url, http\_method, \(optional\) headers, \(optional\) request body. The source will make exactly this http request.
|
|
|