Check User Follower
This endpoint returns is_follower = true if the user (identified in path) follow me
info
This operation requires the community to be set to follow mode.
info
This operation requires authentication.
HTTP Request
GET /api/v2/user/{id}/is_follower/
Parameters
| Name | In | Type | Required | Description | 
|---|---|---|---|---|
| id | path | string | true | A unique integer value identifying this user | 
Example Request
- JavaScript
- Bash
const headers = {
  'Accept':'application/json',
  'Authorization: Bearer <token>'
};
fetch('/api/v2/user/{id}/is_follower/',
{
  method: 'GET',
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});
# You can also use wget
curl -X GET /api/v2/user/{id}/is_follower/ \
  -H 'Accept: application/json'
  -H "Authorization: Bearer <token>"
Responses
| Status | Meaning | Description | Schema | 
|---|---|---|---|
| 200 | OK | Response status code | none | 
Example responses
- 200
{
    "is_follower": "boolean"
}