How to get all configuration values required in NSConfig.php file in PHPToolkit?
Hi,
I want to get all configuration values that are required in the NSConfig.php file in PHPToolkit. So Please, guide me on how to get these values in NetSuite.
NSConfig.php file code:
<?phpdefine("NS_ENDPOINT", "2022_1");define("NS_HOST", "https://account_specific.host_name.api.netsuite.com"); // Web Services URL - The service URL can be found in Setup -> Company -> Company Information -> Company URLs under SUITETALK (SOAP AND REST WEB SERVICES). E.g. https://ACCOUNT_ID.suitetalk.api.netsuite.comdefine("NS_ACCOUNT", "MYACCT1");// Token Based Authentication datadefine("NS_CONSUMER_KEY", "customerKey"); // Consumer Key shown once on Integration detail pagedefine("NS_CONSUMER_SECRET", "customerSecret"); // Consumer Secret shown once on Integration detail page// following token has to be for role having those permissions: Log in using Access Tokens, Web Servicesdefine("NS_TOKEN", "token"); // Token Id shown once on Access Token detail pagedefine("NS_TOKEN_SECRET", "tokenScret"); // Token Secret shown once on Access Token detail page?>