Skip to content

Commit 0654389

Browse files
authored
Sync component changes for June (#3)
1 parent d1ba8eb commit 0654389

File tree

5 files changed

+155
-46
lines changed

5 files changed

+155
-46
lines changed

docs/connectors/airtable.md

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,16 @@ Manage records, tables and bases in Airtable
99

1010
## Connections
1111

12-
### Airtable OAuth 2.0
12+
### API Key and Base ID (Deprecated)
13+
14+
Airtable API Key and Base ID. Will be deprecated on Feb 1, 2024
15+
16+
| Input | Comments | Default |
17+
| ---------------- | --------------------------------------------------------------------------------------------------------------- | ------- |
18+
| Airtable Base ID | Visit https://airtable.com/api and select your workspace. The ID of your base will be printed for you in green. | |
19+
| API Key | You can generate an API key from https://airtable.com/account. | |
20+
21+
### OAuth 2.0
1322

1423
Connect your Airtable account using OAuth 2.0
1524

@@ -22,23 +31,14 @@ Read about how OAuth 2.0 works [here](../oauth2.md).
2231
| Client ID | Provide the Client ID you received from https://airtable.com/create/oauth. | |
2332
| Client Secret | Provide the Client Secret you received from https://airtable.com/create/oauth. | |
2433

25-
### Airtable Personal Access Token
34+
### Personal Access Token
2635

2736
Connect your Airtable account using a personal access token
2837

2938
| Input | Comments | Default |
3039
| ------- | ------------------------------------------------------------------- | ------- |
3140
| API Key | You can generate an API key from https://airtable.com/create/tokens | |
3241

33-
### [Legacy] Airtable API Key and Base ID
34-
35-
Airtable API Key and Base ID. Will be deprecated on Feb 1, 2024
36-
37-
| Input | Comments | Default |
38-
| ---------------- | --------------------------------------------------------------------------------------------------------------- | ------- |
39-
| Airtable Base ID | Visit https://airtable.com/api and select your workspace. The ID of your base will be printed for you in green. | |
40-
| API Key | You can generate an API key from https://airtable.com/account. | |
41-
4242
## Triggers
4343

4444
### Webhook
@@ -63,12 +63,12 @@ Create a new record in the given table
6363

6464
Create a new webhook for a base
6565

66-
| Input | Comments | Default |
67-
| ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
68-
| Base ID | The ID of the base to interact with. Required if you use an OAuth connection, and optional if you specify base ID with a legacy API Key connection. | |
69-
| Connection | | |
70-
| Notification URL | An optional URL that can receive notification pings. | |
71-
| Specification | A JSON object that describe the types of changes the webhook is interested in. | <code>{<br /> "options": {<br /> "filters": {<br /> "fromSources": [<br /> "publicApi"<br /> ],<br /> "dataTypes": [<br /> "tableData"<br /> ],<br /> "recordChangeScope": "tblMwMnUJpKoJUDzo"<br /> }<br /> }<br />}</code> |
66+
| Input | Comments | Default |
67+
| ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
68+
| Base ID | The ID of the base to interact with. Required if you use an OAuth connection, and optional if you specify base ID with a legacy API Key connection. | |
69+
| Connection | | |
70+
| Notification URL | An optional URL that can receive notification pings. | |
71+
| Specification | A JSON object that describe the types of changes the webhook is interested in. | |
7272

7373
### Delete Record
7474

@@ -166,7 +166,6 @@ Send raw HTTP request to Airtable
166166
| Header | A list of headers to send with the request. | |
167167
| Response Type | The type of data you expect in the response. You can request json, text, or binary data. | json |
168168
| Timeout | The maximum time that a client will await a response to its request | |
169-
| Debug Request | Enabling this flag will log out the current request. | false |
170169
| Retry Delay (ms) | The delay in milliseconds between retries. This is used when 'Use Exponential Backoff' is disabled. | 0 |
171170
| Retry On All Errors | If true, retries on all erroneous responses regardless of type. This is helpful when retrying after HTTP 429 or other 3xx or 4xx errors. Otherwise, only retries on HTTP 5xx and network errors. | false |
172171
| Max Retry Count | The maximum number of retries to attempt. Specify 0 for no retries. | 0 |
524 Bytes
Loading

docs/connectors/first-resonance.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: ION Connector
3+
sidebar_label: ION
4+
description: Interact with ION's data and services through ION's GraphQL API.
5+
---
6+
7+
![ION](./assets/first-resonance.png#connector-icon)
8+
Interact with ION&#x27;s data and services through ION&#x27;s GraphQL API.
9+
10+
## Connections
11+
12+
### OAuth Client Credentials
13+
14+
Get an access token for the ION API
15+
16+
This connection uses OAuth 2.0, a common authentication mechanism for integrations.
17+
Read about how OAuth 2.0 works [here](../oauth2.md).
18+
19+
| Input | Comments | Default |
20+
| ------------- | ----------------------------------- | ------- |
21+
| Auth Endpoint | The ION **Auth Endpoint** | |
22+
| Client ID | The OAuth 2.0 Client ID for ION | |
23+
| Client Secret | The OAuth 2.0 Client Secret for ION | |
24+
25+
## Triggers
26+
27+
### Trigger
28+
29+
Receive a webhook from ION
30+
31+
## Actions
32+
33+
### Run GraphQL Query
34+
35+
Performs a generic GraphQL query against the API
36+
37+
| Input | Comments | Default |
38+
| ----------------- | ---------------------------- | ------- |
39+
| Connection | | |
40+
| GraphQL Query | The GraphQL query to run | |
41+
| GraphQL Variables | The GraphQL variables to run | |

docs/connectors/google-sheets.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ Send raw HTTP request to Google Sheets
115115
| Response Type | The type of data you expect in the response. You can request json, text, or binary data. | json |
116116
| Timeout | The maximum time that a client will await a response to its request | |
117117
| Debug Request | Enabling this flag will log out the current request. | false |
118-
| Retry Delay (ms) | The delay in milliseconds between retries. | 0 |
119-
| Retry On All Errors | If true, retries on all erroneous responses regardless of type. | false |
120-
| Max Retry Count | The maximum number of retries to attempt. | 0 |
121-
| Use Exponential Backoff | Specifies whether to use a pre-defined exponential backoff strategy for retries. | false |
118+
| Retry Delay (ms) | The delay in milliseconds between retries. This is used when 'Use Exponential Backoff' is disabled. | 0 |
119+
| Retry On All Errors | If true, retries on all erroneous responses regardless of type. This is helpful when retrying after HTTP 429 or other 3xx or 4xx errors. Otherwise, only retries on HTTP 5xx and network errors. | false |
120+
| Max Retry Count | The maximum number of retries to attempt. Specify 0 for no retries. | 0 |
121+
| Use Exponential Backoff | Specifies whether to use a pre-defined exponential backoff strategy for retries. When enabled, 'Retry Delay (ms)' is ignored. | false |
122122

123123
### Remove Worksheet
124124

0 commit comments

Comments
 (0)