Implementation of Data Entry for Categories and Tags #17
Labels
good first issue
Good for newcomers
help wanted
Extra attention is needed
Sponsors Welcome
Actively accepting sponsors for this task
I've noticed that the HubSpot API only provides category and tag IDs, but not their names. Currently, we are generating the categories and tags using a generic name and the ID provided by HubSpot.
var defaultCategoryName = $"{Constant.DefaultCategoryName}{item.CategoryId}";
var name = $"hubspotTagId{tagId}";
As a proposal for improvement, I suggest implementing an early data entry system for categories and tags. This system would allow a list of (category, id) and (tag, id) pairs to be entered beforehand.
I think this improvement would allow us to avoid manual fixes later, saving time and reducing the possibility of errors.
Greetings,
The text was updated successfully, but these errors were encountered: