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
8 changes: 4 additions & 4 deletions src/main/java/com/getconvoy/api/OnboardApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ private File prepareDownloadFile(HttpResponse<InputStream> response) throws IOEx

/**
* 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 \&quot;file\&quot; field; generated SDK clients only expose the JSON body.
* @param projectID Project ID (required)
* @param dryRun Validate without creating (optional)
* @param modelsBulkOnboardRequest Onboard Details (JSON) (optional)
Expand All @@ -180,7 +180,7 @@ public BulkOnboard200Response bulkOnboard(@jakarta.annotation.Nonnull String pro

/**
* 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 \&quot;file\&quot; field; generated SDK clients only expose the JSON body.
* @param projectID Project ID (required)
* @param dryRun Validate without creating (optional)
* @param modelsBulkOnboardRequest Onboard Details (JSON) (optional)
Expand All @@ -195,7 +195,7 @@ public BulkOnboard200Response bulkOnboard(@jakarta.annotation.Nonnull String pro

/**
* 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 \&quot;file\&quot; field; generated SDK clients only expose the JSON body.
* @param projectID Project ID (required)
* @param dryRun Validate without creating (optional)
* @param modelsBulkOnboardRequest Onboard Details (JSON) (optional)
Expand All @@ -208,7 +208,7 @@ public ApiResponse<BulkOnboard200Response> bulkOnboardWithHttpInfo(@jakarta.anno

/**
* 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 \&quot;file\&quot; field; generated SDK clients only expose the JSON body.
* @param projectID Project ID (required)
* @param dryRun Validate without creating (optional)
* @param modelsBulkOnboardRequest Onboard Details (JSON) (optional)
Expand Down
Loading