Replaces the value of a single subscriber property. Property names must be camel cased or this call will fail. Note that subscriber properties are visible to bots through the subscriber.properties
hash. See the Bot Documentation for more information.
Response format | JSON |
---|---|
Requires authentication? | Yes |
value required | New value for the property. |
---|
curl -X PUT \
-u '[SID]:[TOKEN]' \
-H 'Content-Type: application/json' \
'https://api.essential.to/v2/account/subscribers/RsbrYCSo2m0sShMLOlZqtw/properties/randomProperty' \
-d '{ "value": 789 }'
# Sample response
{
"value": 789
}
Python coming soon.
Node coming soon.