Skip to main content
POST
/
integrations
/
make
/
conversations
/
set-custom-field
Set a custom field value on a conversation by phone number
curl --request POST \
  --url https://smartsend-server.otherwise.co.il/integrations/make/conversations/set-custom-field \
  --header 'Content-Type: application/json' \
  --header 'x-organization-id: <api-key>' \
  --data '
{
  "phoneNumber": "<string>",
  "fieldId": "<string>",
  "fieldName": "<string>",
  "value": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://smartsend-d755cc5e.mintlify.app/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

Phone number in any format (972..., 05..., +972...)

fieldId
string

ID of the custom field (from /rpc/custom-fields)

fieldName
string

Name of the custom field (alternative to fieldId)

value
string | null

Value to set. Pass null to clear.

Response

200

Custom field set successfully