Newer Version Available

This content describes an older version of this product. View Latest

Deep Linking Schema for the Field Service Lightning Mobile App

Use the predefined URI schema for the Field Service Lightning mobile app on both Android and iOS devices.

URI Schema Format

<com.salesforce.fieldservice>://v1/sObject/<id>/<action>

Let’s break down each parameter of the URI scheme format.
  • com.salesforce.fieldservice—The supported Salesforce schema name.
  • v1—The current version of deep linking. This is a static value.
  • sObject—Indicates a single instance of a Salesforce object. The schema supports all object types that are supported in the Field Service app, such as work order, service appointment, and assets.
  • id—The unique single instance of a Salesforce object. id lengths of 15 and 18 characters are supported.
  • action—A supported URI schema operation. The supported values are details, related, products, feed, and location. If no action is specified, URIs for work orders and service appointments will direct to the Overview tab. URIs for any other object type will direct to the Details tab.

Supported URI Schemes

com.salesforce.fieldservice://v1/sObject/<id>
Links to the Overview tab for work orders and service appointments. Links to the Details tab for all other object types.
Example: com.salesforce.fieldservice://v1/sObject/0WO5500000001UZGAA links to the Overview tab for a work order.
com.salesforce.fieldservice://v1/sObject/<id>/details
Links to the Details tab for all object types.
Example: com.salesforce.fieldservice://v1/sObject/0WO5500000001UZGAA/details links to the Details tab for a work order.
com.salesforce.fieldservice://v1/sObject/<id>/related
Links to the Related tab for all object types.
Example: com.salesforce.fieldservice://v1/sObject/0WO5500000001UZGAA/related links to the Related tab for a work order.
com.salesforce.fieldservice://v1/sObject/<id>/products
Links to the Products tab for all applicable object types. If an object does not have a Products tab, it links to the Details tab instead.
Example: com.salesforce.fieldservice://v1/sObject0WO5500000001UZGAA/products links to the Products tab for a work order.
com.salesforce.fieldservice://v1/sObject/<id>/feed
Links to the Feed tab for all applicable object types. If an object does not have a Feed tab, it links to the Details tab instead.
Example: com.salesforce.fieldservice://v1/sObject/0WO5500000001UZGAA/feed links to the Feed tab for a work order.
com.salesforce.fieldservice://v1/sObject/<id>/location
Links to the Location tab for all applicable object types. If an object does not have a Location tab, it links to the Details tab instead.
Example: com.salesforce.fieldservice://v1/sObject/0WO5500000001UZGAA/location links to the Location tab for a work order.