Wordpress custom API slug

Hi all,

For security reasons, I changed my Wordpress API slug from /wp-json to something else. With the woocommerce node, you’re able to specify your site’s slug as the node asks for your url including the slug. However, the Wordpress node does not and appears to assume /wp-json.

Is there a way we can get Make to accept a new slug for the wordpress api?

Creating a custom API slug in WordPress can be really useful for organizing endpoints and improving clarity in complex projects. I’ve done this by registering routes through register_rest_route() and defining unique namespaces for plugins. It keeps integrations cleaner, especially when multiple APIs coexist. Clear versioning within the slug also helps manage backward compatibility efficiently.