Skip to content

General

Like, follow, and bookmark are available as options for the user to interact with content.

Only like is documented below; swap like for follow or bookmark as needed.

http POST https://sls-api.sheepcrm.com/selfservice/v2/example/person/56dddf627e6ca15f518356dd/like/ "Authorization: Bearer $APP_API_TOKEN"
HTTP/1.1 200 OK
{
"connection": "/example/connection/63f499fe4473a59fb4323958/",
"uri": "/example/person/56dddf627e6ca15f518356dd/"
}
http DELETE https://sls-api.sheepcrm.com/selfservice/v2/example/person/56dddf627e6ca15f518356dd/like/ "Authorization: Bearer $APP_API_TOKEN"
HTTP/1.1 200 OK
{
...
}
http https://sls-api.sheepcrm.com/selfservice/v2/example/person/56dddf627e6ca15f518356dd/interactions/ "Authorization: Bearer $APP_API_KEY"
HTTP/1.1 200 OK
{
"bookmarked": false,
"followed": false,
"liked": true,
"uri": "/example/person/56dddf627e6ca15f518356dd/"
}