Documentation Index
Fetch the complete documentation index at: https://docs.morf.health/docs/llms.txt
Use this file to discover all available pages before exploring further.
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.{
"$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"
}
}
{
"$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
$result_object_key.address
Example
{
"city": "Springfield",
"country": "US",
"line1": "1234 Main St",
"line2": "Apt. 1",
"postal_code": "62704",
"state": "IL"
}
City/District/Suburb/Town/Village
CEL
$result_object_key.address.city
Example
"Springfield"
Two-letter country code (ISO 3166-1 alpha-2)
CEL
$result_object_key.address.country
Example
"US"
Address line 1 (Street address/PO Box/Company name)
CEL
$result_object_key.address.line1
Example
"1234 Main St"
Address line 2 (Apartment/Suite/Unit/Building)
CEL
$result_object_key.address.line2
Example
"Apt. 1"
ZIP or postal code
CEL
$result_object_key.address.postal_code
Example
"62704"
State/County/Province/Region
CEL
$result_object_key.address.state
Example
"IL"
The current balance, if any, that’s stored on the customer
CEL
$result_object_key.balance
Example
1000
Time at which the object was created.
CEL
$result_object_key.created
Example
"2025-01-02T15:04:05Z"
Three-letter ISO code for the currency the customer can be charged in for recurring billing purposes
CEL
$result_object_key.currency
Example
"usd"
An arbitrary string attached to the object. Often useful for displaying to users
CEL
$result_object_key.description
Example
"VIP Customer"
The customer’s email address
CEL
$result_object_key.email
Example
"customer@example.com"
Unique identifier for the object
CEL
$result_object_key.id
Example
"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
$result_object_key.metadata
Example
{
"key1": "value1",
"key2": "value2"
}
The customer’s full name or business name
CEL
$result_object_key.name
Example
"John Doe"
The customer’s phone number
CEL
$result_object_key.phone
Example
"+1234567890"
