Home › Forums › GoogleSync › I need to add a filter as an exception to perfmatters blocking the rest api This topic has 1 reply, 2 voices, and was last updated 7 months, 2 weeks ago by nmedia. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts April 27, 2025 at 8:16 pm #164601 Seth DeyoParticipant I need to add a filter as an exception to perfmatters blocking the rest api Here is an example of adding an exception for JetMenu. add_filter(‘perfmatters_rest_api_exceptions’, function($exceptions) { $exceptions[] = ‘jet-menu-api’; return $exceptions; }); Im looking for the Name of the API can you provide this/these for me, I am a pro user April 28, 2025 at 3:00 am #164603 nmediaKeymaster Hi, Thanks for reaching out! The REST API endpoints used by Bulk Product Sync (BPS) are registered under the namespace wbps/v1. So, for adding an exception to Perfmatters, you can use: add_filter('perfmatters_rest_api_exceptions', function($exceptions) { $exceptions[] = 'wbps/v1'; return $exceptions; }); ✅ This will allow all BPS REST API calls (like syncing products, categories, verifying authcode, etc.) to bypass Perfmatters blocking. Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In