Get Appointment Candidates

Returns a list of service resources (appointment candidates) based on work type group or work type and service territories.

Set up Salesforce Scheduler before making requests. This setup includes creating or configuring Service Resources, Service Territory Members, Work Type Groups, Work Types, Work Type Group Members, and Service Territory Work Types. See Set Up Salesforce Scheduler for more information.

The appointment time slots are determined based on multiple factors, such as field values, scheduled appointments, absences, Scheduler Settings, and Scheduling Policies to determine available time slots. See How Salesforce Scheduler Determines Available Time Slots for more information.

The following factors are considered for returning start time and end time of resources.

Resource Availability: Determined using service territory member, service territory, work type, and account operating hours fields.

Resource Unavailability

Determined by resource absences, existing appointments that the resource is assigned to. The resource must be marked as a required resource for the appointment with a status that isn’t in closed, canceled, or completed.

Appointment Start Time Interval in the Scheduling Policy

Appointment start time interval field in the Scheduling Policy is used to determine when the appointment can start. This interval can be 5, 10, 15, 20, 30, or 60. By default, it’s set to 15.

Work Type Duration: The end time is calculated as start time + duration of the work type. If asset scheduling is enabled, the response also includes asset-based candidates.

URI: /services/data/vXX.X/scheduling/getAppointmentCandidates

Available version: 45.0

Formats: JSON, XML

HTTP methods: POST

Request body

ParameterRequiredTypeDescription
accountIdNoStringThe ID of the associated account.
allowConcurrentSchedulingNoBooleanIf true, allows scheduling of concurrent appointments in a time slot. If false, concurrent appointments aren’t allowed. The default is false. This field is available in API version 47.0 and later.
correlationIdNoStringThe ID to pass custom information to the ServiceResourceScheduleHandler Apex interface. For example, you can use the correlation ID to identify the app, website, or any other external system that calls this Apex interface implementation. If you don’t pass a custom value, a randomly generated identifier is passed. This field is available in API version 53.0 and later.
endTimeNoStringThe latest time that a time slot can end (inclusive).
engagementChannelTypeIdsNoString[]The ID of the engagement channel type record. The availability of service resources is filtered based on the engagement channel type selected. This field is available in API version 56.0 and later. This field supports only one engagement channel type ID.
filterByResourcesNoString[]A comma-separated list of service resource IDs. API returns only eligible service resources that are both in the list and in the selected service territory. The resources are sorted by the order in which the resource IDs are passed. Available in API version 51.0 and later.
resourceLimitApptDistributionNoIntegerSpecify the maximum number of service resources that you want to show during appointment scheduling when appointment distribution is enabled. Available in API version 53.0 and later.
startTimeNoStringThe earliest time that a time slot can begin (inclusive). Defaults to the current time of the request, if empty. You can also use a time from the past.
schedulingPolicyIdNoStringThe ID of the AppointmentSchedulingPolicy object. If no scheduling policy is passed in the request body, the default configurations are used. All Scheduling Policy Configurations are considered when using this API.
territoryIdsYesString[]List of service territory IDs, where the work that is being requested is performed.
workTypeRequired if workTypeGroupId isn’t given.Work TypeThe type of the work to be performed.
workTypeGroupIdRequired if workType isn’t given.StringThe ID of the work type group containing the work types that are being performed.

Note: For endTime: The API only returns time slots up to 31 days from the startTime.

You can use engagement channel types with the getAppointmentCandidates API only if:

  • The Schedule Appointments Using Engagement Channels setting is enabled in Salesforce Scheduler Settings in your Salesforce org.

  • Shifts are defined in the scheduling policy. For more information on setting up shifts in scheduling policy, see Define Shift Rules in Scheduling Policy.

    Engagement channel types are not supported with operating hours rules in the scheduling policy.

Note: For filterByResources: Scheduler doesn’t support appointment Distribution when you’ve specified a list of resource IDs in the filterByResources parameter.

Note: For resourceLimitApptDistribution: The filterByResources field takes precedence over the resourceLimitApptDistribution field.

To determine the required fields in your request body, consider the following points:

  • Provide either the workTypeGroupId or workType parameter in your request body, but not both.
  • If the workType parameter is specified, then you must provide either the id or durationInMinutes parameter.
  • If id of the workType parameter is specified, then the rest of the workType fields are optional.
  • When you’re using shifts: You must specify workTypeGroupId or the ID of the work type. When you specify the ID of the work type, all other workType fields become optional, and Scheduler retrieves their values from the database.
  • When you’re using operating hours: You don’t need to specify workTypeGroupId or the ID of the work type. Scheduler applies durationInMinutes and all other workType fields as you configure them.

Response Body

Execution of a successful request returns the response body containing a list of available appointment resources.

ParameterRequiredTypeDescription
candidatesYesCandidates[]List of available appointment candidates.

Example Request Body

Using workTypeGroupId:

Using workTypeId:

Example Response Body