Compose a talk session
documentedCompose a Talk session.
POST /v1/talk/composeTalkno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.ap3api.com/v1/talk/compose" \
-X POST \
-H "X-Api-Key: {{AUTOPILOTHQ_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"fields": {"str::first": "{{$first_name}}", "str::last": "{{$last_name}}", "str::email": "{{$email}}"}, "merge_by": ["str::email"], "conversation": {"subject": "{{$subject}}", "messages": [{"type": "text", "body": "{{$text_body}}"}, {"type": "html", "body": "<p>{{$html_body}}</p>"}]}}'