POST selfie/posts/:post id/unlike
From Social ID Developers
Deprecation notice: this API is deprecated since July 19, 2018.
Contents |
Description
Decrements the like counter of a post.
Resource URL
POST https://api.socialidnow.com/v1/marketing/selfie/posts/:post_id/unlike
Parameters
URL Parameters
post_id | required | post identifier. |
---|
JSON Parameters
user_id | required | identifier of the user who performed the like action. |
---|
Authentication
This API does not require authentication.
Response
Response Status
ok (200) | The like was removed successfully. |
---|---|
bad_request (400) | Some required parameter was not informed. |
not_found (404) | Like not found. |
internal_server_error (500) | An unknown error happened. |
Examples
Request
Performs the unlike of post "123" by the user identified by the IP "50.97.87.253".
curl -iX POST 'https://api.socialidnow.com/v1/marketing/selfie/posts/123/unlike' \ -d '{"user_id":"50.97.87.253"}' \ -H 'Content-type:application/json'
Response
Response Headers
HTTP/1.1 200 Ok Status: 200