How to check company registration is allowed from the store front B2B Magento 2?

Company Module in B2B Magento 2 allowed to create a registration for the company user from the storefront in Magneto 2.

Its store configuration setting to enable or disable storefront registration. By default, the B2B module allowed to create a registration from the frontend.

Go To admin panel,
Stores -> Configuration -> Company Configuration -> Allow Company Registration from the Storefront -> Yes/No. Continue reading “How to check company registration is allowed from the store front B2B Magento 2?”

How to Identify company module is active in B2B Magento 2?

You can identify Company module status like enable/disable using programmatic way.

Native Company module has a class called Magento\Company\Api\StatusServiceInterface contains the method isActive() to check the module status. Continue reading “How to Identify company module is active in B2B Magento 2?”

Check User type is customer or guest in Rest Webapi Magento 2.

Check Current user type using programmatically with Rest Web API. It’s used when you interact with the Webapi in Magento 2.

The difference between Customer and Guest user type is resource access. Customer User type has anonymous or self permission are allowed where later one access only Resources with anonymous permission.

Magento store the constant user type value in Magento\Authorization\Model\UserContextInterface. Continue reading “Check User type is customer or guest in Rest Webapi Magento 2.”