Newer Version Available
Named Credentials as Callout Endpoints
By separating the endpoint URL and authentication from the callout definition, named credentials make callouts easier to maintain. For example, if an endpoint URL changes, you update only the named credential. All callouts that reference the named credential simply continue to work.
If you have multiple organizations, you can create a named credential with the same name but with a different endpoint URL in each org. You can then package and deploy—on all the orgs—one callout definition that references the shared name of those named credentials. For example, the named credential in each org can have a different endpoint URL to accommodate differences in development and production environments. If an Apex callout specifies the shared name of those named credentials, the Apex class that defines the callout can be packaged and deployed on all those orgs without programmatically checking the environment.
Example
You can code the callout endpoint as the URL
instead of the named credential, but your code then handles the authentication. Our
example uses basic password authentication, but keep in mind that OAuth authentication
is much more complex and is an ideal use case for named
credentials.