1
0
mirror of synced 2025-12-23 21:03:15 -05:00

Update source-templates.md (#65550)

This commit is contained in:
Teo
2025-08-26 14:52:26 -07:00
committed by GitHub
parent 9c06bebb2f
commit a50a1a27eb

View File

@@ -10,10 +10,14 @@ The Airbyte platform comes with ready to use templates. You can also create temp
Here is an example request to create a new template using only default values
```
curl https://api.airbyte.ai/api/v1/integrations/sources \
curl https://api.airbyte.ai/api/v1/integrations/templates/sources \
-H 'authorization: Bearer <token>' \
-H 'content-type: application/json' \
--data-raw '{"organization_id":"<organization_id>","actor_definition_id":"<definition_id>","partial_default_config":{}, "additional_required_parameters": []}' -vvv
--data-raw '{
"organization_id": "7c60d51f-b44e-4682-87d6-449835ea4de6",
"actor_definition_id": "45b7d7e6-d7d5-4f31-8c1a-9fd96ce6ee35",
"partial_default_config": {}
}' -vvv
```
You can find the actor definition ID from the [Connector Registry](https://connectors.airbyte.com/files/registries/v0/cloud_registry.json).
@@ -25,7 +29,7 @@ The partial_default_config is a JSON object representing keys from the connector
You can delete Source Templates by submitting a DELETE request to the API:
```
curl -X DELETE 'https://api.airbyte.ai/api/v1/integrations/sources/<template_id>' \
curl -X DELETE 'https://api.airbyte.ai/api/v1/integrations/templates/sources/{id}' \
-H 'authorization: Bearer <token>'
```
@@ -34,4 +38,4 @@ Sources created from a deleted Source Template will stop showing up in the Widge
When a Source Template is updated, all existing Sources created from it will also be updated.
# Listing Templates
The [List Source Templates endpoint](https://api.airbyte.ai/api/v1/redoc#tag/Template-Sources/operation/list_integrations_templates_sources) lists both the templates you created, as well as standard templates that are available to everyone using the platform.
The [List Source Templates endpoint](https://api.airbyte.ai/api/v1/docs#tag/Template-Sources/operation/list_integrations_templates_sources) lists both the templates you created, as well as standard templates that are available to everyone using the platform.