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
@@ -263,6 +303,44 @@ export class ListsApiRequestFactory extends BaseAPIRequestFactory {
263
303
returnrequestContext;
264
304
}
265
305
306
+
/**
307
+
* Retrieve the conversion details for a list. This can be used to check for an upcoming conversion, or to get the details of when a list was already converted.
308
+
* Retrieve the conversion details for a list
309
+
* @param listId The ID of the list to schedule the conversion for.
* Delete a list by **ILS list ID**. Lists deleted through this endpoint can be restored up to 90-days following the delete. After 90-days, the list is purged and can no longer be restored.
268
346
* Delete a List
@@ -339,6 +417,62 @@ export class ListsApiRequestFactory extends BaseAPIRequestFactory {
339
417
returnrequestContext;
340
418
}
341
419
420
+
/**
421
+
* Schedule the conversion of an active list into a static list, or update the already scheduled conversion. This can be scheduled for a specific date or based on activity.
422
+
* Schedule or update the conversion of a list to static
423
+
* @param listId The ID of the list to schedule the conversion for.
* Update the filter branch definition of a `DYNAMIC` list. Once updated, the list memberships will be re-evaluated and updated to match the new definition.
344
478
* Update List Filter Definition
@@ -458,6 +592,38 @@ export class ListsApiRequestFactory extends BaseAPIRequestFactory {
458
592
459
593
exportclassListsApiResponseProcessor{
460
594
595
+
/**
596
+
* Unwraps the actual response sent by the server from the response context and deserializes the response content
597
+
* to the expected objects
598
+
*
599
+
* @params response Response returned by the server for a request to cancelConversion
600
+
* @throws ApiException if the response code was not in [200, 299]
Copy file name to clipboardExpand all lines: codegen/crm/lists/apis/MembershipsApi.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ export class MembershipsApiRequestFactory extends BaseAPIRequestFactory {
22
22
* Add the records provided to the list. Records that do not exist or that are already members of the list are ignored. This endpoint only works for lists that have a `processingType` of `MANUAL` or `SNAPSHOT`.
23
23
* Add Records to a List
24
24
* @param listId The **ILS ID** of the `MANUAL` or `SNAPSHOT` list.
25
-
* @param requestBody
25
+
* @param requestBody The IDs of the records to add to the list.
@@ -124,7 +124,7 @@ export class MembershipsApiRequestFactory extends BaseAPIRequestFactory {
124
124
* Add and/or remove records that have already been created in the system to and/or from a list. This endpoint only works for lists that have a `processingType` of `MANUAL` or `SNAPSHOT`.
125
125
* Add and/or Remove Records from a List
126
126
* @param listId The **ILS ID** of the `MANUAL` or `SNAPSHOT` list.
127
-
* @param membershipChangeRequest
127
+
* @param membershipChangeRequest The IDs of the records to add and/or remove from the list.
@@ -344,7 +344,7 @@ export class MembershipsApiRequestFactory extends BaseAPIRequestFactory {
344
344
* Remove the records provided from the list. Records that do not exist or that are not members of the list are ignored. This endpoint only works for lists that have a `processingType` of `MANUAL` or `SNAPSHOT`.
345
345
* Remove Records from a List
346
346
* @param listId The **ILS ID** of the `MANUAL` or `SNAPSHOT` list.
347
-
* @param requestBody
347
+
* @param requestBody The IDs of the records to remove from the list.
0 commit comments