cURL
curl --request POST \ --url https://api.example.com/api/v1/chat/threads/{thread_id}/participants \ --header 'Content-Type: application/json' \ --data ' { "user_id": "<string>" } '
Add a participant to a thread.
can_manage_participants
curl -X POST https://api.ama2.me/api/v1/chat/threads/{thread_id}/participants \ -H "Authorization: Bearer YOUR_JWT_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "user_id": "target-user-uuid" }'