Hey folks! I’ve been using HubSpot for ages and I’m curious about what you all think of their dev docs and API.
I love the platform but sometimes I feel like the docs could use some work. Have you run into any issues? Maybe stuff that’s hard to find or examples that don’t quite cover what you need?
I’m always helping people out in forums and chat groups, and I often have to rely on my own experience instead of just pointing them to the docs. It’d be awesome if the docs were as clear as some other big platforms out there.
What’s your take? Have you given HubSpot any feedback lately? What would you like to see improved?
Let’s chat about it! Maybe if we all speak up, we can help make things better for everyone using HubSpot’s dev tools.
function checkApiUsage(system) {
let qualityScore = 0;
if (system.providesGoodExamples) {
qualityScore += 5;
}
if (system.offersEasyNavigation) {
qualityScore += 3;
}
return qualityScore > 7 ? 'Excellent!' : 'Needs improvement';
}
What score would you give HubSpot’s docs right now?