Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(integrations): add support for builder.io #2637

Merged
merged 4 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions docs-v2/integrations/all/builder-io.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Builder.io
sidebarTitle: Builder.io
---

API configuration: [`builder-io-private`](https://nango.dev/providers.yaml), [`builder-io-public`](https://nango.dev/providers.yaml)

## Features

| Features | Status |
| - | - |
| [Auth (API Key)](/integrate/guides/authorize-an-api) | ✅ |
| [Sync data](/integrate/guides/sync-data-from-an-api) | ✅ |
| [Perform workflows](/integrate/guides/perform-workflows-with-an-api) | ✅ |
| [Proxy requests](/integrate/guides/proxy-requests-to-an-api) | ✅ |
| [Receive webhooks](/integrate/guides/receive-webhooks-from-an-api) | 🚫 (time to contribute: <48h) |

<Tip>We can implement missing features in &lt;48h, just ask for it in the [community](https://nango.dev/slack).</Tip>

## Getting started

- [How to generate API keys](https://www.builder.io/c/docs/using-your-api-key#finding-your-public-api-key)
- [Builder.io API docs](https://www.builder.io/c/docs/api-intro)

<Tip>Need help getting started? Get help in the [community](https://nango.dev/slack).</Tip>

## API gotchas

- Builder.io has two different sets of API keys for its various APIs. For the `content` API, a public API key is required, while the `write` API requires a private API key. For more details, please refer to the specific API documentation.

<Note>Add Getting Started links and Gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs-v2/integrations/all/builder-io.mdx)</Note>
1 change: 1 addition & 0 deletions docs-v2/integrations/cms.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ sidebarTitle: CMS
</Tip>

<CardGroup cols={4}>
<Card title="Builder.io" href="/integrations/all/builder-io" color="#68a063" />
<Card title="Contentful" href="/integrations/all/contentful" color="#68a063" />
<Card title="Contentstack" href="/integrations/all/contentstack" color="#68a063" />
<Card title="Webflow" href="/integrations/all/webflow" color="#68a063" />
Expand Down
1 change: 1 addition & 0 deletions docs-v2/integrations/design.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<CardGroup cols={4}>
<Card title="Adobe" href="/integrations/all/adobe" color="#68a063" />
<Card title="Autodesk" href="/integrations/all/autodesk" color="#68a063" />
<Card title="Builder.io" href="/integrations/all/builder-io" color="#68a063" />
<Card title="Contentful" href="/integrations/all/contentful" color="#68a063" />
<Card title="Figjam" href="/integrations/all/figjam" color="#68a063" />
<Card title="Figma" href="/integrations/all/figma" color="#68a063" />
Expand Down
1 change: 1 addition & 0 deletions docs-v2/integrations/dev-tools.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ sidebarTitle: Developer Tools
<Card title="AWS" href="/integrations/all/aws" color="#68a063" />
<Card title="Atlassian" href="/integrations/all/atlassian" color="#68a063" />
<Card title="Bitbucket" href="/integrations/all/bitbucket" color="#68a063" />
<Card title="Builder.io" href="/integrations/all/builder-io" color="#68a063" />
<Card title="CodeClimate" href="/integrations/all/codeclimate" color="#68a063" />
<Card title="Contentful" href="/integrations/all/contentful" color="#68a063" />
<Card title="Digital Ocean" href="/integrations/all/digitalocean" color="#68a063" />
Expand Down
1 change: 1 addition & 0 deletions docs-v2/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@
"integrations/all/box",
"integrations/all/braintree",
"integrations/all/brex",
"integrations/all/builder-io",
"integrations/all/calendly",
"integrations/all/canny",
"integrations/all/certn",
Expand Down
22 changes: 22 additions & 0 deletions packages/shared/providers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,28 @@ brex-staging:
proxy:
base_url: https://platform.staging.brexapis.com
docs: https://docs.nango.dev/integrations/all/brex
builder-io-private:
categories:
- dev-tools
- design
- cms
auth_mode: API_KEY
proxy:
base_url: https://${connectionConfig.domain}
headers:
Authorization: Bearer ${apiKey}
docs: https://docs.nango.dev/integrations/all/builder-io
builder-io-public:
categories:
- dev-tools
- design
- cms
auth_mode: API_KEY
proxy:
base_url: https://${connectionConfig.domain}
query:
apiKey: ${apiKey}
hassan254-prog marked this conversation as resolved.
Show resolved Hide resolved
docs: https://docs.nango.dev/integrations/all/builder-io
calendly:
categories:
- productivity
Expand Down
bodinsamuel marked this conversation as resolved.
Show resolved Hide resolved
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading