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
Valerio ChangValerio Chang 

How to retrieve Type Picklist Values of the SignatureType on DigitalSignature on the Metadata API?

I would like to retrieve the [Type Picklist Values] of the [SignatureType] of the standard object [DigitalSignature] via the metadata API, but I cannot find out which metadata type this falls under.

I have tried to retrieve it using the following [package.xml] on https://workbench.developerforce.com, but cannot see the values.
 
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
  <types>
    <members>DigitalSignature</members>
    <name>CustomObject</name>
  </types>
  <version>50.0</version>
</Package>

I have also tried with the [Global value set] and [Standard value set] to no success.

I have check that it's not listed under https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_unsupported_types.htm
The following standard picklists: IdeaTheme.Categories, Opportunity.ForecastCategoryName, Question.Origin. (All other standard picklists are supported.)
VinayVinay (Salesforce Developers) 
Do you have field service enabled to retrieve DigitalSignature?

https://developer.salesforce.com/docs/atlas.en-us.field_service_dev.meta/field_service_dev/sforce_api_objects_digitalsignature.htm

Thanks,
Valerio ChangValerio Chang
Yes I confirm my Field Service is enabled before I tried the steps above.
Having it enabled did not help me retrieve the picklist values.
User-added image