Skip to main content
POST
/
integrations
/
make
/
conversations
/
assign
Assign a user to a conversation by phone number
curl --request POST \
  --url https://smartsend-server.otherwise.co.il/integrations/make/conversations/assign \
  --header 'Content-Type: application/json' \
  --header 'x-organization-id: <api-key>' \
  --data '
{
  "phoneNumber": "<string>",
  "userId": "<string>",
  "userName": "<string>",
  "actorId": "<string>",
  "actorName": "<string>",
  "replaceExisting": true
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.smartsend.co.il/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-organization-id
string
header
required

Your SmartSend Organization ID. Required on every request.

Body

application/json
phoneNumber
string
required
userId
string
required
userName
string
actorId
string
actorName
string
replaceExisting
boolean
default:true

When true (default), unassigns every other user before assigning the target user (replace). When false, leaves existing assignments intact and just adds the target user (append). If the target user is already assigned, this is a no-op.

Response

200

User assigned successfully