Workflow prompt
Create a package Call App that captures order number, product, delivery issue, return request, support need, and requested resolution.
Output schema
{
"outcome": "package call outcome",
"fields": [
{
"description": "order number captured during the call.",
"name": "order_number",
"required": true,
"type": "text"
},
{
"description": "product captured during the call.",
"name": "product",
"required": true,
"type": "text"
},
{
"description": "issue type captured during the call.",
"name": "issue_type",
"required": true,
"type": "text"
},
{
"description": "delivery status captured during the call.",
"name": "delivery_status",
"required": true,
"type": "text"
},
{
"description": "requested resolution captured during the call.",
"name": "requested_resolution",
"required": true,
"type": "text"
}
]
}