Create SMS
documentedCreate an SMS activity.
POST /activity/sms/{?send_to_inbox}Activitiesno 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.close.com/api/v1/activity/sms/?send_to_inbox={{$send_to_inbox}}" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"local_phone": "{{$local_phone}}", "text": "{{$text}}", "template_id": "{{$template_id}}", "status": "outbox", "direction": "outbound", "date_scheduled": "{{$date_scheduled}}"}'