# Managing Airbyte Embedded ## Customer Workspaces Airbyte Embedded is built upon the Airbyte Platform. As the owner of your embedded instance, you access Airbyte via the standard sign-in. Each customer who configures a source via the Embedded Widget is automatically assigned a workspace. Within this workspace, data pipelines are created between the source and staging store, which you configured in the pre-requisite section of this guide. In this example, the staging store is S3. ![Selected workspaces.](./assets/embedded-workspaces.png) ## Enabling Connectors within the Widget Source connectors can be configured to appear in the Embedded widget by creating a configuration template [via the source_template endpoint](https://api.airbyte.ai/api/v1/docs#tag/Template-Sources/operation/create_integrations_templates_sources). The following example demonstrates how to use the API to create a new configuration template for the Faker connector, with a required “*count*” field. To obtain the `source_connector_definition_id`, you can access this via the [Airbyte Connector Registry](https://connectors.airbyte.com/files/generated_reports/connector_registry_report.html). ```bash curl --request POST \ --url https://api.airbyte.ai/api/v1/integrations/templates/sources \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer ' \ --data '{ "organization_id": "", "actor_definition_id": "", "partial_default_config": {} }' ``` :::note This endpoint is only available to Embedded customers. :::