Skip to content
Merged
Changes from all 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
24 changes: 16 additions & 8 deletions src/convoy/api/onboard/bulk_onboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,11 @@ def sync_detailed(
| BulkOnboardResponse401
| BulkOnboardResponse404
]:
"""Bulk onboard endpoints with subscriptions
r"""Bulk onboard endpoints with subscriptions

This endpoint accepts a CSV file or JSON body to bulk-create endpoints with subscriptions
This endpoint bulk-creates endpoints with subscriptions from a JSON body. A CSV file upload is also
accepted over raw HTTP as multipart/form-data with a \"file\" field; generated SDK clients only
expose the JSON body.

Args:
project_id (str):
Expand Down Expand Up @@ -161,9 +163,11 @@ def sync(
| BulkOnboardResponse404
| None
):
"""Bulk onboard endpoints with subscriptions
r"""Bulk onboard endpoints with subscriptions

This endpoint accepts a CSV file or JSON body to bulk-create endpoints with subscriptions
This endpoint bulk-creates endpoints with subscriptions from a JSON body. A CSV file upload is also
accepted over raw HTTP as multipart/form-data with a \"file\" field; generated SDK clients only
expose the JSON body.

Args:
project_id (str):
Expand Down Expand Up @@ -199,9 +203,11 @@ async def asyncio_detailed(
| BulkOnboardResponse401
| BulkOnboardResponse404
]:
"""Bulk onboard endpoints with subscriptions
r"""Bulk onboard endpoints with subscriptions

This endpoint accepts a CSV file or JSON body to bulk-create endpoints with subscriptions
This endpoint bulk-creates endpoints with subscriptions from a JSON body. A CSV file upload is also
accepted over raw HTTP as multipart/form-data with a \"file\" field; generated SDK clients only
expose the JSON body.

Args:
project_id (str):
Expand Down Expand Up @@ -241,9 +247,11 @@ async def asyncio(
| BulkOnboardResponse404
| None
):
"""Bulk onboard endpoints with subscriptions
r"""Bulk onboard endpoints with subscriptions

This endpoint accepts a CSV file or JSON body to bulk-create endpoints with subscriptions
This endpoint bulk-creates endpoints with subscriptions from a JSON body. A CSV file upload is also
accepted over raw HTTP as multipart/form-data with a \"file\" field; generated SDK clients only
expose the JSON body.

Args:
project_id (str):
Expand Down