Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

Get Resources (POST)

Search for healthcare care providers or assets using the backend search engine and data.
Resource
1/connect/health/appointment-management/resources
Available version
65.0
HTTP methods
POST
Request body for POST
1{
2"resourceType": "Provider",
3"providerSearchCriteria": {
4"providerName": "John Dae",
5"specialties": [
6“Cardiology”],
7“planType”:[“HMO”]
8},
9"commonSearchCriteria": {
10"facilityName": "Any Clinic",
11"radius": 5,
12"distanceUnit": "miles"
13},
14"offset": 0,
15"searchLimit": 10
16}
Properties
Property Name Type Description Required
resourceType String Type of resource to search for. Possible values are:
  • Provider
  • Asset.
Required
providerSearchCriteria Provider Search Criteria Input Criteria used specifically for searching for healthcare providers. Optional
assetSearchCriteria Asset Search Criteria Input Criteria used specifically for searching for assets. Optional
commonSearchCriteria Common Search Criteria Input Search filters that apply to both provider and asset searches. Optional
orderBy String Field by which the search results should be sorted. Possible values are:
  • name
  • distanceor a valid CPSF field.
Optional
ascending Boolean Indicates if the sort order is ascending (true) or descending (false). Optional
offset Integer Starting point for retrieving a subset of search results. Minimum value is 0. Optional
searchLimit Integer Maximum number of search results to return. Minimum value is 1, maximum is 1000. Optional
Response body for POST
Get Resources Output