ConstructorIO.ConstructorIOAPI.AddOrUpdateBatchAsync C# (CSharp) Method

AddOrUpdateBatchAsync() public method

Adds or Updates multiple items in one batch.
public AddOrUpdateBatchAsync ( IEnumerable Items, ListItemAutocompleteType AutocompleteSection ) : Task
Items IEnumerable The items to add or update.
AutocompleteSection ListItemAutocompleteType The section the items should be added to.
return Task
        public async Task<bool> AddOrUpdateBatchAsync(IEnumerable<ListItem> Items, ListItemAutocompleteType AutocompleteSection)
        {
            return await AddOrUpdateBatchAsync(Items, StringEnum.GetStringValue(AutocompleteSection));
        }

Same methods

ConstructorIOAPI::AddOrUpdateBatchAsync ( IEnumerable Items, string AutocompleteSection ) : Task