function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Exel Connector - Help PleaseExel Connector - Help Please 

Can we get account id's from the url of the account?

Hello All,

 

I have a number of account urls and i need to get their account id. I can go individually and check the accounts but that defies the purpose.

Can anyone please help me?

Abhi_TripathiAbhi_Tripathi
Hi,

Yes you can get Account Id from the URL, If you are using a vf page and a controller

Here is the method that you can use

//Returns you the Id from the URL
String Id = ApexPages.currentPage().getParameters().get('id');

Regards,
Abhi Tripathi
Salesforce Certified Developer