ConstructorIO.ConstructorIOAPI.AddBatchAsync C# (CSharp) Method

AddBatchAsync() public method

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

Same methods

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