Parameters
Hide parameters
Hide parameters
ID
This field maps to the destination API id field.HI ID PII
This field maps to the destination API description field.PII
This field maps to the destination API email field.HI ID PII
This field maps to the destination API metadata field.PII
This field maps to the destination API name field.PII
This field maps to the destination API phone field.Copy
Ask AI
{
  "$result_object_key": {
    "address": {
      "city": "Springfield",
      "country": "US",
      "line1": "1234 Main St",
      "line2": "Apt. 1",
      "postal_code": "62704",
      "state": "IL"
    },
    "balance": 1000,
    "created": "2025-01-02T15:04:05Z",
    "currency": "usd",
    "description": "VIP Customer",
    "email": "customer@example.com",
    "id": "cus_J2m3K4L5N6O7P8Q9R0S",
    "metadata": {
      "key1": "value1",
      "key2": "value2"
    },
    "name": "John Doe",
    "phone": "+1234567890"
  }
}
Copy
Ask AI
{
  "$result_object_key": {
    "address": {
      "city": "City/District/Suburb/Town/Village",
      "country": "Two-letter country code (ISO 3166-1 alpha-2)",
      "line1": "Address line 1 (Street address/PO Box/Company name)",
      "line2": "Address line 2 (Apartment/Suite/Unit/Building)",
      "postal_code": "ZIP or postal code",
      "state": "State/County/Province/Region"
    },
    "balance": "The current balance, if any, that's stored on the customer",
    "created": "Time at which the object was created.",
    "currency": "Three-letter ISO code for the currency the customer can be charged in for recurring billing purposes",
    "description": "An arbitrary string attached to the object. Often useful for displaying to users",
    "email": "The customer's email address",
    "id": "Unique identifier for the object",
    "metadata": {
      "key": null,
      "value": null
    },
    "name": "The customer's full name or business name",
    "phone": "The customer'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.
Hide fields
Hide fields
The customer’s address
CEL
Copy
Ask AI
$result_object_key.address
Example
Copy
Ask AI
{
"city": "Springfield",
"country": "US",
"line1": "1234 Main St",
"line2": "Apt. 1",
"postal_code": "62704",
"state": "IL"
}
City/District/Suburb/Town/Village
CEL
Copy
Ask AI
$result_object_key.address.city
Example
Copy
Ask AI
"Springfield"
Two-letter country code (ISO 3166-1 alpha-2)
CEL
Copy
Ask AI
$result_object_key.address.country
Example
Copy
Ask AI
"US"
Address line 1 (Street address/PO Box/Company name)
CEL
Copy
Ask AI
$result_object_key.address.line1
Example
Copy
Ask AI
"1234 Main St"
Address line 2 (Apartment/Suite/Unit/Building)
CEL
Copy
Ask AI
$result_object_key.address.line2
Example
Copy
Ask AI
"Apt. 1"
ZIP or postal code
CEL
Copy
Ask AI
$result_object_key.address.postal_code
Example
Copy
Ask AI
"62704"
State/County/Province/Region
CEL
Copy
Ask AI
$result_object_key.address.state
Example
Copy
Ask AI
"IL"
The current balance, if any, that’s stored on the customer
CEL
Copy
Ask AI
$result_object_key.balance
Example
Copy
Ask AI
1000
Time at which the object was created.
CEL
Copy
Ask AI
$result_object_key.created
Example
Copy
Ask AI
"2025-01-02T15:04:05Z"
Three-letter ISO code for the currency the customer can be charged in for recurring billing purposes
CEL
Copy
Ask AI
$result_object_key.currency
Example
Copy
Ask AI
"usd"
An arbitrary string attached to the object. Often useful for displaying to users
CEL
Copy
Ask AI
$result_object_key.description
Example
Copy
Ask AI
"VIP Customer"
The customer’s email address
CEL
Copy
Ask AI
$result_object_key.email
Example
Copy
Ask AI
"customer@example.com"
Unique identifier for the object
CEL
Copy
Ask AI
$result_object_key.id
Example
Copy
Ask AI
"cus_J2m3K4L5N6O7P8Q9R0S"
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format
CEL
Copy
Ask AI
$result_object_key.metadata
Example
Copy
Ask AI
{
"key1": "value1",
"key2": "value2"
}
The customer’s full name or business name
CEL
Copy
Ask AI
$result_object_key.name
Example
Copy
Ask AI
"John Doe"
The customer’s phone number
CEL
Copy
Ask AI
$result_object_key.phone
Example
Copy
Ask AI
"+1234567890"
