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
Dharmendra KushwahDharmendra Kushwah 

how to find deployed Components in an Org with Deployment ID? Components have been deployed using ANT meta data API.

DeveloperDeveloper
Hi Dhamendra,

Right now we are not able to access the deployment Id in Salesforce.

please find out below link.

https://success.salesforce.com/ideaView?id=08730000000kdnLAAQ

Thanks 
Gopal M.
Andee Weir 17Andee Weir 17
You can use the Rest Explorer in Workbench (https://workbench.developerforce.com/restExplorer.php) to make a call to retrieve the components included in the deployment.  When in the Rest Explorer use a Get with a path of /services/data/v43.0/metadata/deployRequest/DEPLOYMENT_ID?includeDetails=true   (replace DEPLOYMENT_ID with the id you see in the Deployment Status e.g. 0Af0C000008PhmA)
Expand out deploymentResults | details | componentFailures & componentSuccesses to see the components.

Andee
Prateek JangirPrateek Jangir
Hi Andee,

This was very helpful thank you so much for reply I came across the requirement to get deployed components by using Id and your solution worked. Thank you Andee.