Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
ExternalClientApplication
Parent Type
File Suffix and Directory Location
ExternalClientApplication components have the suffix .eca and are stored in the externalClientApps folder.
Version
ExternalClientApplication components are available in API version 59.0 and later.
Special Access Rules
Access to the ExternalClientApplication type requires orgs to enable the Opt in to External Client Apps permission in Setup.
Fields
| Field Name | Description |
|---|---|
| contactEmail |
|
| contactPhone |
|
| description |
|
| distributionState |
|
| iconUrl |
|
| infoUrl |
|
| isProtected |
|
| label |
|
| logoUrl |
|
| managedType |
|
| orgScopedExternalApp |
|
Declarative Metadata Sample Definition
This example shows an ExternalClientApplication component.
1<?xml version="1.0" encoding="UTF-8"?>
2<ExternalClientApplication xmlns="http://soap.sforce.com/2006/04/metadata">
3 <contactEmail>johndoe@example.com</contactEmail>
4 <description>Test external client app</description>
5 <distributionState>Local</distributionState>
6 <iconUrl>https://icon.example.com</iconUrl>
7 <infoUrl>https://info.example.com</infoUrl>
8 <logoUrl>https://logo.example.com</logoUrl>
9 <label>myeca</label>
10 <isProtected>false</isProtected>
11 <orgScopedExternalApp>Org_ID:External_Client_App_Name</orgScopedExternalApp>
12</ExternalClientApplication>This example package.xml references the previous definition.
1<?xml version="1.0" encoding="UTF-8"?>
2<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3 <types>
4 <members>*</members>
5 <name>ExternalClientApplication</name>
6 </types>
7 <types>
8 <members>*</members>
9 <name>ExtlClntAppOauthSettings</name>
10 </types>
11 <types>
12 <members>*</members>
13 <name>ExtlClntAppGlobalOauthSettings</name>
14 </types>
15 <types>
16 <members>*</members>
17 <name>ExtlClntAppOauthConfigurablePolicies</name>
18 </types>
19 <types>
20 <members>*</members>
21 <name>ExtlClntAppConfigurablePolicies</name>
22 </types>
23 <version>60.0</version>
24</Package>Wildcard Support in the Manifest File
This metadata type supports the wildcard character * (asterisk) in the package.xml manifest file. For information about using the manifest file, see Deploying and Retrieving Metadata with the Zip File.