Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I detect the environment in Salesforce?

I am integrating our back end systems with Salesforce using the web services. I have production and stage environments running on different URLs. I need to be able to have the endpoint of the web service call be different depending on whether the code is running in the production or sandbox Salesforce instance.

How do I detect the environment.

Currently I am considering looking up a user to see if there user name ends in 'devsandbox' as I have been unable to identify a system object that I can query to get the environment.

Further clarification:

The location I need to determine this is within the Apex code that is invoked when I select a button in Salesforce. My custom controller needs to know if it running in the production or sandbox Salesforce environment.

like image 989
Craig Harris Avatar asked Oct 02 '09 04:10

Craig Harris


People also ask

How do I find my Salesforce environment?

Navigate to the Trust site. Click the Status button next to status.salesforce.com. Paste your copied value into Search Instance, Domain, POD or MID. Click the magnifying glass icon to perform the search.

How do I know if my org is sandbox or prod?

Look at your URL, if you log in at test.salesforce.com it's sandbox - and will bring you to csX.salesforce.com (x replaced with a number). While your production will log in at login.salesforce.com and bring you to naX.salesforce.com.

What are the environments in Salesforce?

Types of Salesforce Environments: There are three types of Environments: Production Environments. Development Environments. Testing Environments.

How do you know which sandbox we are using in Salesforce?

Steps to find the sandbox type: Setup --> Deployment Settings --> continue -- > you will find the type of sandbox.


1 Answers

For y'all finding this via search results, there is an important update. As Daniel Hoechst pointed out in another post, SF now directly provides sandbox vs. production information:

In Summer '14, (version 31.0), there is a new field available on the Organization object.

select Id, IsSandbox from Organization limit 1

From the release notes under New and Change Objects:

The Organization object has the following new read-only fields.

InstanceName
IsSandbox
like image 121
Benderguy Avatar answered Sep 21 '22 06:09

Benderguy