afv-library/skills/building-sf-integrations/assets/endpoint-security/example.remoteSite-meta.xml
sandipkumar-yadav 37aa84df42
feat: @W-22444026@ Introducing Core Skills, Datacloud Skills, Industries and Utility Skills. (#268)
* Migrating Core Salesforce Skills

* Updating pr comments

* updat reference

* Updating a skill

* Migrating Datacloud skills

* Migrating Industries cloud skills

* Validating - skills fixing

---------

Co-authored-by: Sandip Kumar Yadav <sandipkumar.yadav+sfemu@salesforce.com>
2026-05-14 19:32:15 +05:30

40 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
Remote Site Setting Template
Use this template when creating integration skills that make HTTP callouts
to external APIs.
IMPORTANT:
- This is the LEGACY approach (still works in all API versions)
- For API 48+ (Spring '20+), prefer CSP Trusted Sites (see example.cspTrustedSite-meta.xml)
Setup:
1. Copy this file to your skill's assets/ directory
2. Replace {{placeholders}} with your values
3. Deploy to org OR let setup script deploy automatically
File Location: force-app/main/default/remoteSiteSettings/{{APIName}}.remoteSite-meta.xml
-->
<RemoteSiteSetting xmlns="http://soap.sforce.com/2006/04/metadata">
<!-- API Name - must be unique, alphanumeric only -->
<fullName>{{APIName}}</fullName>
<!-- Description - what this endpoint is for -->
<description>{{Description}}</description>
<!-- Security - ALWAYS keep this false (don't allow HTTP, only HTTPS) -->
<disableProtocolSecurity>false</disableProtocolSecurity>
<!-- Active - set to true to enable -->
<isActive>true</isActive>
<!-- URL - the base domain (no path, no trailing slash) -->
<!-- Examples:
- https://api.stripe.com
- https://api.twilio.com
- https://graph.microsoft.com
-->
<url>{{BaseURL}}</url>
</RemoteSiteSetting>