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
publicList<ChannelGroup> getChannelGroups(@Param("channelGroupIds") @Parameter(description = "The IDs of the channel groups to retrieve. If absent, all groups will be retrieved.") @QueryParam("channelGroupId") Set<String> channelGroupIds) throwsClientException;
57
-
58
-
@POST
59
-
@Path("/_getChannelGroups")
60
-
@Operation(summary = "Retrieve a list of all channel groups, or multiple channel groups by ID. This is a POST request alternative to GET /channelgroups that may be used when there are too many channel group IDs to include in the query parameters.")
publicList<ChannelGroup> getChannelGroupsPost(@Param("channelGroupIds") @RequestBody(description = "The IDs of the channel groups to retrieve. If absent, all groups will be retrieved.", content = {
@Parameter(description = "The channel group object to update or create.")
81
-
@Schema(description = "The channel group object to update or create.", type = "object")
82
-
@FormDataParam("channelGroups")
83
-
Set<ChannelGroup> channelGroups,
84
-
85
-
@Param("removedChannelGroupIds")
86
-
@Parameter(description = "All channel group IDs known to be removed.")
87
-
@Schema(description = "All channel group IDs known to be removed.", type = "object")
88
-
@FormDataParam("removedChannelGroupIds")
89
-
Set<String> removedChannelGroupIds,
90
-
91
-
@Param("override")
92
-
@Parameter(description = "If true, the channel groups will be updated even if different revisions exist on the server.", schema = @Schema(defaultValue = "false"))
93
-
@QueryParam("override")
94
-
booleanoverride) throwsClientException;
95
-
// @formatter:on
1
+
/*
2
+
* Copyright (c) Mirth Corporation. All rights reserved.
3
+
*
4
+
* http://www.mirthcorp.com
5
+
*
6
+
* The software in this package is published under the terms of the MPL license a copy of which has
7
+
* been included with this distribution in the LICENSE.txt file.
publicList<ChannelGroup> getChannelGroups(@Param("channelGroupIds") @Parameter(description = "The IDs of the channel groups to retrieve. If absent, all groups will be retrieved.") @QueryParam("channelGroupId") Set<String> channelGroupIds) throwsClientException;
60
+
61
+
@POST
62
+
@Path("/_getChannelGroups")
63
+
@Operation(summary = "Retrieve a list of all channel groups, or multiple channel groups by ID. This is a POST request alternative to GET /channelgroups that may be used when there are too many channel group IDs to include in the query parameters.")
publicList<ChannelGroup> getChannelGroupsPost(@Param("channelGroupIds") @RequestBody(description = "The IDs of the channel groups to retrieve. If absent, all groups will be retrieved.", content = {
@Parameter(description = "The channel group object to update or create.")
87
+
@Schema(description = "The channel group object to update or create.", type = "object")
88
+
@FormDataParam("channelGroups")
89
+
Set<ChannelGroup> channelGroups,
90
+
91
+
@Param("removedChannelGroupIds")
92
+
@Parameter(description = "All channel group IDs known to be removed.")
93
+
@Schema(description = "All channel group IDs known to be removed.", type = "object")
94
+
@FormDataParam("removedChannelGroupIds")
95
+
Set<String> removedChannelGroupIds,
96
+
97
+
@Param("override")
98
+
@Parameter(description = "If true, the channel groups will be updated even if different revisions exist on the server.", schema = @Schema(defaultValue = "false"))
0 commit comments