Newer Version Available
Deploying and Retrieving Metadata with the Zip File
The files that are retrieved or deployed in a .zip file might be unpackaged components that reside in your org (such as standard objects) or packaged components that reside within named packages.
The following is a sample package.xml file. You can retrieve an individual component for a metadata type by specifying its fullName field value in a members element. You can also retrieve all components of a metadata type by using <members>*</members>.
1<?xml version="1.0" encoding="UTF-8"?>
2<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3 <types>
4 <members>MyCustomObject__c</members>
5 <name>CustomObject</name>
6 </types>
7 <types>
8 <members>*</members>
9 <name>CustomTab</name>
10 </types>
11 <types>
12 <members>Standard</members>
13 <name>Profile</name>
14 </types>
15 <version>66.0</version>
16</Package>The following elements can be defined in package.xml.
- <fullName> contains the name of the server-side package. If no <fullName> exists, the package.xml defines a client-side unpackaged package.
- <types> contains the name of the metadata type (for example, CustomObject) and the named members (for example, myCustomObject__c) to be retrieved or deployed. You can add multiple <types> elements in a manifest file.
- <members> contains the fullName of the component, for example MyCustomObject__c. The listMetadata() call is useful for determining the fullName for components of a particular metadata type if you want to retrieve an individual component. For many metadata types, you can replace the value in members with the wildcard character * (asterisk) instead of listing each member separately. See the reference topic for a specific type to determine whether that type supports wildcards.
- <name> contains the metadata type, for example CustomObject or Profile. There is one name defined for each metadata type in the directory. Any metadata type that extends Metadata is a valid value. The name that’s entered must match a metadata type that’s defined in the Metadata API WSDL. See Metadata Types for a list.
- <version> is the API version number that’s used when the .zip file is deployed or retrieved. Currently the valid value is 66.0.
For more sample package.xml manifest files that show you how to work with different subsets of metadata, see Sample package.xml Manifest Files.
To delete components, see Deleting Components from an Organization.