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
// Get a list of user IDs who joined the membership.
1139
+
// Parameters:
1140
+
// membershipId Membership plan ID.
1141
+
// start A continuation token to get next remaining membership user IDs. Returned only when there are remaining user IDs that weren't returned in the userIds property in the previous request. The continuation token expires in 24 hours (86,400 seconds).
1142
+
// limit The max number of items to return for this API call. The value is set to 300 by default, but the max acceptable value is 1000.
// If you want to take advantage of the HTTPResponse object for status codes and headers, use this signature.
1167
+
//
1168
+
// Get a list of user IDs who joined the membership.
1169
+
// Parameters:
1170
+
// membershipId Membership plan ID.
1171
+
// start A continuation token to get next remaining membership user IDs. Returned only when there are remaining user IDs that weren't returned in the userIds property in the previous request. The continuation token expires in 24 hours (86,400 seconds).
1172
+
// limit The max number of items to return for this API call. The value is set to 300 by default, but the max acceptable value is 1000.
* A list of user IDs who joined the membership. Users who have not agreed to the bot user agreement, are not following the bot, or are not active will be excluded. If there are no users in the membership, an empty list will be returned. (Required)
29
+
*/
30
+
UserIds []string`json:"userIds"`
31
+
32
+
/**
33
+
* A continuation token to get next remaining membership user IDs. Returned only when there are remaining user IDs that weren't returned in the userIds property in the previous request. The continuation token expires in 24 hours (86,400 seconds).
0 commit comments