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.
RegisteredExternalService
Parent Type
File Suffix and Directory Location
RegisteredExternalService components have the suffix .registeredExternalService and are stored in the registeredExternalServices folder.
Version
RegisteredExternalService components are available in API version 49.0 and later.
Special Access Rules
This metadata type is available only if the B2B Commerce or D2C Commerce license is enabled.
Fields
| Field Name | Description |
|---|---|
| configUrl |
|
| description |
|
| documentationUrl |
|
| extensionPointName |
|
| externalServiceProvider |
|
| externalServiceProviderType |
|
| iconUri |
|
| isApplication |
|
| isProtected |
|
| masterLabel |
|
Declarative Metadata Sample Definition
The following is an example of a RegisteredExternalService component.
1<?xml version="1.0" encoding="UTF-8"?>
2<RegisteredExternalService xmlns="http://soap.sforce.com/2006/04/metadata">
3 <externalServiceProvider>TaxSample</externalServiceProvider>
4 <externalServiceProviderType>Tax</externalServiceProviderType>
5 <documentationUrl>http://sample.com/doc</documentationUrl>
6 <configUrl>http://sample.com/config</configUrl>
7 <masterLabel>TaxService</masterLabel>
8 <isProtected>false</isProtected>
9</RegisteredExternalService>The following is an example package.xml that references the previous definition.
1<Package xmlns="http://soap.sforce.com/2006/04/metadata">
2 <types>
3 <members>TaxSample</members>
4 <name>ApexClass</name>
5 </types>
6 <types>
7 <members>TaxService</members>
8 <name>RegisteredExternalService</name>
9 </types>
10 <version>60.0</version>
11</Package>