1
0
mirror of synced 2026-01-21 06:08:50 -05:00
Files
airbyte/docs/integrations/sources/http-request.md
Marcos Marx 88d7953a18 Add CHANGELOG for Sources (#4215)
* add changelog for postres source

* add changelog for mysql source

* add changelog for mssql source

* add changelog for file source

* add changelog for google sheets

* add full changelog for file source

* add full changelog for google sheet source

* add full changelog for mssql source

* add changelog for http requests

* add changelog for salesforce source

* add changelog for facebook marketing source

* add changelog for google analytics source

* add changelog for shopify native source connector
2021-06-18 17:45:09 -03:00

40 lines
1.6 KiB
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.
## Changelog
| Version | Date | Pull Request | Subject |
| :------ | :-------- | :----- | :------ |
| 0.2.4 | 2021-06-09 | [3973](https://github.com/airbytehq/airbyte/pull/3973) | Add AIRBYTE_ENTRYPOINT for Kubernetes support |
| 0.2.3 | 2021-04-20 | [3165](https://github.com/airbytehq/airbyte/pull/3165) | Version bump |
| 0.2.1 | 2021-04-03 | [2726](https://github.com/airbytehq/airbyte/pull/2726) | Fix base connector versioning |
| 0.2.0 | 2021-03-09 | [2238](https://github.com/airbytehq/airbyte/pull/2238) | Protocol allows future/unknown properties |
| 0.2.1 | 2021-04-03 | [2726](https://github.com/airbytehq/airbyte/pull/2726) | Fix base connector versioning |
| 0.1.1 | 2021-03-07 | [2342](https://github.com/airbytehq/airbyte/pull/2342) | Fix incorrect documentation |
| 0.1.0 | 2020-11-30 | [1046](https://github.com/airbytehq/airbyte/pull/1046) | Add connectors using an index YAML file |