forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add source-definitions (airbytehq#4601)
* add source-definitions * tmp: add docs * upd docs * add changelog * changes * upd docs/integrations/readme
- Loading branch information
1 parent
b8b205a
commit 4774edf
Showing
6 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
...ain/resources/config/STANDARD_SOURCE_DEFINITION/badc5925-0485-42be-8caa-b34096cb71b5.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"sourceDefinitionId": "badc5925-0485-42be-8caa-b34096cb71b5", | ||
"name": "Survey Monkey", | ||
"dockerRepository": "airbyte/source-surveymonkey", | ||
"dockerImageTag": "0.1.0", | ||
"documentationUrl": "https://docs.airbyte.io/integrations/sources/surveymonkey" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Surveymonkey | ||
|
||
## Sync overview | ||
|
||
This source can sync data for the [SurveyMonkey API](https://developer.surveymonkey.com/api/v3/). It supports both Full Refresh and Incremental syncs. | ||
You can choose if this connector will copy only the new or updated data, or all rows in the tables and columns you set up for replication, every time a sync is run. | ||
|
||
### Output schema | ||
|
||
This Source is capable of syncing the following core Streams: | ||
|
||
* [Surveys](https://developer.surveymonkey.com/api/v3/#surveys) (Incremental) | ||
* [SurveyPages](https://developer.surveymonkey.com/api/v3/#surveys-id-pages) | ||
* [SurveyQuestions](https://developer.surveymonkey.com/api/v3/#surveys-id-pages-id-questions) | ||
* [SurveyResponses](https://developer.surveymonkey.com/api/v3/#survey-responses) | ||
|
||
### Data type mapping | ||
|
||
| Integration Type | Airbyte Type | Notes | | ||
| :--- | :--- | :--- | | ||
| `string` | `string` | | | ||
| `number` | `number` | | | ||
| `array` | `array` | | | ||
| `object` | `object` | | | ||
|
||
### Features | ||
|
||
| Feature | Supported?\(Yes/No\) | Notes | | ||
| :--- | :--- | :--- | | ||
| Full Refresh Sync | Yes | | | ||
| Incremental Sync | Yes | | | ||
| Namespaces | No | | | ||
|
||
### Performance considerations | ||
|
||
The SurveyMonkey API applies heavy API quotas for default private apps, which have the following limits: | ||
* 125 requests per minute | ||
* 500 requests per day | ||
|
||
To cover more data from this source we use caching. | ||
|
||
Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see any rate limit issues that are not automatically retried successfully. | ||
|
||
## Getting started | ||
|
||
### Requirements | ||
|
||
* SurveyMonkey API Key | ||
|
||
### Setup guide | ||
|
||
Please read this [docs](https://developer.surveymonkey.com/api/v3/#getting-started). | ||
Register your application [here](https://developer.surveymonkey.com/apps/) | ||
Then go to Settings and copy your access token | ||
|
||
## Changelog | ||
|
||
| Version | Date | Pull Request | Subject | | ||
| :------ | :-------- | :----- | :------ | | ||
| 0.1.0 | 2021-07-06 | [4097](https://github.com/airbytehq/airbyte/pull/4097) | Initial Release | |