Create Conversation User
documentedCreate a Conversation User resource.
POST /v1/UsersConversationsno 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://conversations.twilio.com/v1/Users" \
-u "{{TWILIO_API_KEY}}:{{TWILIO_API_SECRET}}" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "X-Twilio-Webhook-Enabled: {{$twilio_webhook_enabled}}" \
-d 'identity={{$identity}}&friendlyName={{$friendlyName}}&attributes={{$attributes}}&roleSid={{$roleSid}}'
# Source: Twilio Conversations User Resource docs turn3view0