Sunset: Replacing api-catalog-public/v1/apis Endpoint

Hello, I’m following on this I noticed the endpoints were updated. However, the links were not fixed correctly. it seems like the developers chosed to replace spaces with “+”, that doesn’quite do the trick. Most of the endpoints are now broken as a result.

On my original comment, I suggested to use a standard uri-encode for the Urls this will make sure the endpoints are accesible. encodeURI() - JavaScript | MDN (mozilla.org)
Example fix in Javascript:

let oldBrokenLink = "https://api.hubspot.com/public/api/spec/v1/specs/Conversations/Conversations Inbox & Messages/versions/54902";

let fixedLink = encodeURI(oldBrokenLink);

console.log(fixedLink);
// https://api.hubspot.com/public/api/spec/v1/specs/Conversations/Conversations%20Inbox%20&%20Messages/versions/54902

This doesn’t affect me since I patched it on my end, but others will definitely assume that the links are not working.
Thank you