Forum Discussion
DougS
10 years agoKhoros Oracle
You can make a REST V1 call like the following to get a count of the total number of kudos given to a particular message:
http://community.lithium.com/community-name/restapi/vc/messages/id/187/kudos/count
(see http://community.lithium.com/t5/Community-API/bd-p/developers-rest-api?leaf-id=Message.kudos.count#Message.kudos.count for more information on the kudos count call)
You could also make a REST V2 call with a LiQL statement like the following:
SELECT * FROM kudos WHERE message.id='187'
(see http://community.lithium.com/t5/Community-API-v2/Kudo-resource/ta-p/123853 for more information on the REST V2 kudos resource)