Newer Version Available
ExternalServiceRegistration
File Suffix and Directory Location
ExternalServiceRegistration components have the suffix .externalServiceRegistration and are stored in the externalServiceRegistrations folder.
Version
ExternalServiceRegistration components are available in API version 39.0 and later.
Fields
| Field Name | Field Type | Description |
|---|---|---|
| description | string | The external service description defined when the service is created. |
| label | string | Required. The service name as it appears on the External Services wizard. |
| namedCredential | string | The reference by name to be used for the service. |
| operations | ExternalServiceOperation[] | Items defined for this operation. |
| registrationProviderType | ExternalServiceRegistrationProviderType (enumeration of type string) | Indicates the source of the API specification registered with the External
Services wizard. Valid values include:
|
| schema | string | The content of the JSON schema in the OpenAPI 2.0 format. Nillable. |
| schemaType | string | The schema format. OpenAPI for Open API 2.0 or InteragentHyperSchema for API version 47.0 and earlier. If not specified, schema type is derived based on the schema content. Nillable. |
| schemaUrl | string | The path should begin with "/" and be relative to the named credential endpoint. |
| serviceBinding | string | Used to map non-supported media types for this external service registration to supported media types. Nillable. Available in API version 53.0 and later. |
| status | string | Required. Indicates service registration status. Valid values include:
|
ExternalServiceOperation
| Field Name | Field Type | Description |
|---|---|---|
| active | boolean | Required. Indicates whether the operation is active (true), or inactive (false). |
| name | string | Required. The operation’s name. |
Declarative Metadata Sample Definition
The following is an example of an ExternalServiceRegistration component that references an external credit service.
1<?xml version="1.0" encoding="UTF-8"?>
2<ExternalServiceRegistration xmlns="http://soap.sforce.com/2006/04/metadata">
3 <label>BankService</label>
4 <namedCredential>Bank</namedCredential>
5 <schema>{
6 "swagger": "2.0",
7 "basePath": "/",
8 "info": {
9 "version": "1.0",
10 "title": "External Service for demo bank",
11 "description": "### External Service for demo bank",
12 "x-vcap-service-name": "DemoBankRestServices"
13 },
14 ...
15 "paths": {
16 "/accounts/{accountName}": {
17 ...
18 }
19 },
20 "definitions": {
21 "accountDetails": {
22 ...
23 },
24 "errorModel": {
25 ...
26 }
27 }
28}</schema>
29 <schemaType>OpenApi</schemaType>
30 <schemaUrl>/accounts/schema</schemaUrl>
31 <status>Complete</status>
32</ExternalServiceRegistration>serviceBinding
The following JSON-encoded string defines the mapping of a non-supported media type to a supported media type for external service request and response body serialization.
1{"compatibleMediaTypes":{
2 "application/x-acme-json":"application/json"
3}}The non-supported media type application/x-acme-json is mapped to the supported media type application/json for this External Services registration. The External Services runtime takes into account the non-supported media type for request and response header processing and serializes the request and response content by the mapped supported media type.
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.