Fetch followers of an account
Please use this (https://socialminx.cc/mobile_api/fetch_followers) API for accessing endpoint of user (followers) list
Get parameters
| Field | Value | Remarks | 
|---|---|---|
| offset | Last user offset ID | This is only needed when loading users of the pagination system. | 
| session_id | Access token ID (Optional) | E.g. de25cc16eb00960f076... | 
| user_id | User int ID | E.g. 12 | 
| page_size | Total users limit for each request | Recommended: 20 | 
Success response
{
        "code": 200,
        "message": "Followers fetched successfully",
        "data": [
            {
                "offset_id": 35,
                "id": 18,
                "about": "",
                "followers": 0,
                "posts": 1,
                "avatar": "http://colibri.loc/upload/avatars/xxxx/xxxx/rddNMSoS6S7cEgHO49Ch_20_456548..8_thumbnail_512x512.jpg",
                "last_active": "21 Jun, 21 01:06 PM",
                "username": "@john_smith",
                "fname": "John",
                "lname": "Smith",
                "email": "john_smith@gmail.com",
                "verified": "0",
                "follow_privacy": "approved",
                "name": "John Smith",
                "url": "http://colibri.loc/@john_smith",
                "is_following": false,
                "follow_requested": false,
                "is_user": false
            },
            ...
        ]
    }
    Error responses
{
        "message": "No data found",
        "code": 204,
        "data": []
    }
    {
        "code": 404,
        "message": "User with this ID does not exist",
        "data": []
    }
    {
        "code": 400,
        "message": "This profile data is not available for viewing",
        "data": []
    }