Skip to content

Commit

Permalink
source-marketo: no http url in docstring (airbytehq#22885)
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere authored Feb 14, 2023
1 parent 3750188 commit ab10c6d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def parse_response(self, response: requests.Response, **kwargs) -> List[str]:
class Leads(MarketoExportBase):
"""
Return list of all leeds.
API Docs: http://developers.marketo.com/rest-api/bulk-extract/bulk-lead-extract/
API Docs: https://developers.marketo.com/rest-api/bulk-extract/bulk-lead-extract/
"""

cursor_field = "updatedAt"
Expand All @@ -349,7 +349,7 @@ class Activities(MarketoExportBase):
"""
Base class for all the activities streams,
provides functionality for dynamically created classes as streams of data.
API Docs: http://developers.marketo.com/rest-api/bulk-extract/bulk-activity-extract/
API Docs: https://developers.marketo.com/rest-api/bulk-extract/bulk-activity-extract/
"""

primary_key = "marketoGUID"
Expand Down Expand Up @@ -411,7 +411,7 @@ def get_json_schema(self) -> Mapping[str, Any]:
class ActivityTypes(MarketoStream):
"""
Return list of all activity types.
API Docs: http://developers.marketo.com/rest-api/lead-database/activities/#describe
API Docs: https://developers.marketo.com/rest-api/lead-database/activities/#describe
"""

def path(self, stream_slice: Mapping[str, Any] = None, **kwargs) -> str:
Expand All @@ -421,7 +421,7 @@ def path(self, stream_slice: Mapping[str, Any] = None, **kwargs) -> str:
class Programs(IncrementalMarketoStream):
"""
Return list of all programs.
API Docs: http://developers.marketo.com/rest-api/assets/programs/#by_date_range
API Docs: https://developers.marketo.com/rest-api/assets/programs/#by_date_range
"""

cursor_field = "updatedAt"
Expand Down

0 comments on commit ab10c6d

Please sign in to comment.