In SharePoint 2007 it was fairly easy to obtain the id for a list (the end of a URL when browsing to a list). In SharePoint 2010/2013 this trick no longer works. Below are several methods to quickly obtain the list id:
Method A
-
Navigate to the list and click Workflow Settings dropdown.
-
Select Manage Workflows With Nintex Workflow.
-
In the browser address bar at the end of the URL you will find the list id (Guid Format).
Method B
-
Navigate to the list and click List Settings.
-
In the browser address bar at the end of the URL you will find the list id (Guid Format with URL encoding).
Example: http://contoso.com/_layouts/15/listedit.aspx?List=%7B00000000%2D0000%2D0000%2D0000%2D000000000000%7D
-
Replace the following characters as follows:
-
%7B to {
-
%2D to –
-
%7D to }
-
Method C
-
Open Microsoft SharePoint Management Shell on a SharePoint server in the farm.
-
Run this cmdlet replacing the URL with the URL of the site containing the list: $(Get-SPWeb http://contoso.com).lists | FT Title, ID
-
Locate your list and corresponding ID in the results.