log_outreach
Track outreach activities to leads by recording communication channels, responses, and notes for revenue pipeline management.
Instructions
Log an outreach activity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
companyName | Yes | ||
leadId | No | ||
notes | No | ||
responseReceived | No | ||
responseType | No | ||
templateId | No | ||
templateUsed | No |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"enum": [
"Cold Email",
"LinkedIn",
"Upwork",
"Phone",
"Gmail",
"Other"
],
"type": "string"
},
"companyName": {
"type": "string"
},
"leadId": {
"type": "number"
},
"notes": {
"type": "string"
},
"responseReceived": {
"enum": [
"Yes",
"No"
],
"type": "string"
},
"responseType": {
"enum": [
"Interested",
"Not Interested",
"Question",
"Meeting Booked",
"No Response"
],
"type": "string"
},
"templateId": {
"type": "number"
},
"templateUsed": {
"type": "string"
}
},
"required": [
"companyName",
"channel"
],
"type": "object"
}