Headers
-
Content-Type
string -
Accept
string
Body
Required
-
reactable_type
string Required The item type that is being reacted to.
-
reactable_uuid
string Required The UUID of the item that is being reacted to.
-
reaction
string Required The reaction. e.g. excited|sad|happy|very_sad
POST
/api/v1/reaction
curl \
--request POST 'https://api.plannrcrm.com/api/v1/reaction' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"reactable_type":"message","reactable_uuid":"string","reaction":"happy"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"reactable_type": "message",
"reactable_uuid": "string",
"reaction": "happy"
}