You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Path the specific API endpoint that this stream represents. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.
Copy file name to clipboardExpand all lines: airbyte_cdk/sources/declarative/models/declarative_component_schema.py
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2048,12 +2048,14 @@ class HttpRequester(BaseModel):
2048
2048
description="Base URL of the API source. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.",
2049
2049
examples=[
2050
2050
"https://connect.squareup.com/v2",
2051
-
"{{ config['base_url'] or 'https://app.posthog.com'}}/api/",
2051
+
"{{ config['base_url'] or 'https://app.posthog.com'}}/api",
description="Path the specific API endpoint that this stream represents. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.",
0 commit comments