{
  "$result_object_key":  {
    "business_name":  "Dr. John",
    "created_at":  "2024-05-10T08:46:04Z",
    "email":  "john.doe@example.com",
    "first_name":  "John",
    "full_name":  "John Doe",
    "id":  "57211",
    "last_name":  "Doe",
    "location":  {
      "city":  "San Francisco",
      "country":  "USA",
      "line1":  "123 Main Street",
      "line2":  "Suite 100",
      "state":  "CA",
      "zip":  "94117"
    },
    "phone_number":  "+15551234123"
  }
}
{
  "$result_object_key":  {
    "business_name":  "Provider's business name",
    "created_at":  "Provider's creation date",
    "email":  "Provider's email",
    "first_name":  "Provider's first name",
    "full_name":  "Provider's full name",
    "id":  "Provider ID",
    "last_name":  "Provider's last name",
    "location":  {
      "city":  "City",
      "country":  "Country",
      "line1":  "First line of the address",
      "line2":  "Second line of the address",
      "state":  "State",
      "zip":  "Zip code"
    },
    "phone_number":  "Provider's phone number"
  }
}

Parameters

Action
Parameters
ID
string

ID This field maps to the destination API id field.

First Name
string
required

PII This field maps to the destination API first_name field.

Last Name
string
required

PII This field maps to the destination API last_name field.

City
string

PII This field maps to the destination API location.city field.

State
string

PII This field maps to the destination API location.state field.

Specialty
string

PII This field maps to the destination API specialty field.

Business Name
string

PII This field maps to the destination API business_name field.

Phone Number
string

PII This field maps to the destination API phone_number field.

Email
string

PII This field maps to the destination API email field.

National Provider Identifier
string

ID This field maps to the destination API npi field.

{
  "$result_object_key":  {
    "business_name":  "Dr. John",
    "created_at":  "2024-05-10T08:46:04Z",
    "email":  "john.doe@example.com",
    "first_name":  "John",
    "full_name":  "John Doe",
    "id":  "57211",
    "last_name":  "Doe",
    "location":  {
      "city":  "San Francisco",
      "country":  "USA",
      "line1":  "123 Main Street",
      "line2":  "Suite 100",
      "state":  "CA",
      "zip":  "94117"
    },
    "phone_number":  "+15551234123"
  }
}
{
  "$result_object_key":  {
    "business_name":  "Provider's business name",
    "created_at":  "Provider's creation date",
    "email":  "Provider's email",
    "first_name":  "Provider's first name",
    "full_name":  "Provider's full name",
    "id":  "Provider ID",
    "last_name":  "Provider's last name",
    "location":  {
      "city":  "City",
      "country":  "Country",
      "line1":  "First line of the address",
      "line2":  "Second line of the address",
      "state":  "State",
      "zip":  "Zip code"
    },
    "phone_number":  "Provider's phone number"
  }
}

Result Object Field Details

You can use the result of the action’s data as inputs to downstream workflow actions.

Each fetch action requires a result object key to be specified which will nest the action’s result data inside the downstream data context in the Workflow.

Here we demonstrate how to refer to this data using the prefix $result_object_key.

ReferringProvider
Fetch Action Response Object
id
string
required

Provider ID

CEL
$result_object_key.id
Example
"57211"
first_name
string
required

PII Provider’s first name

CEL
$result_object_key.first_name
Example
"John"
last_name
string
required

PII Provider’s last name

CEL
$result_object_key.last_name
Example
"Doe"
location
object
required

PII Provider’s location

CEL
$result_object_key.location
Example
{
"city":  "San Francisco",
"country":  "USA",
"line1":  "123 Main Street",
"line2":  "Suite 100",
"state":  "CA",
"zip":  "94117"
}
location.line1
string

First line of the address

CEL
$result_object_key.location.line1
Example
"123 Main Street"
location.line2
string

Second line of the address

CEL
$result_object_key.location.line2
Example
"Suite 100"
location.city
string

City

CEL
$result_object_key.location.city
Example
"San Francisco"
location.state
string

State

CEL
$result_object_key.location.state
Example
"CA"
location.zip
string

Zip code

CEL
$result_object_key.location.zip
Example
"94117"
location.country
string

Country

CEL
$result_object_key.location.country
Example
"USA"
created_at
timing.v1.Timestamp
required

Provider’s creation date

CEL
$result_object_key.created_at
Example
"2024-05-10T08:46:04Z"
business_name
string

PII Provider’s business name

CEL
$result_object_key.business_name
Example
"Dr. John"
phone_number
string

PII Provider’s phone number

CEL
$result_object_key.phone_number
Example
"+15551234123"
email
string

PII Provider’s email

CEL
$result_object_key.email
Example
"john.doe@example.com"
full_name
string

PII Provider’s full name

CEL
$result_object_key.full_name
Example
"John Doe"