curl --request GET \
--url https://apix.us.amity.co/api/v4/me/followInfo \
--header 'Authorization: Bearer <token>'
{
"followCounts": [
{
"userId": "<string>",
"followerCount": 123,
"followingCount": 123,
"pendingCount": 123
}
]
}
Get my follow information.
curl --request GET \
--url https://apix.us.amity.co/api/v4/me/followInfo \
--header 'Authorization: Bearer <token>'
{
"followCounts": [
{
"userId": "<string>",
"followerCount": 123,
"followingCount": 123,
"pendingCount": 123
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Follow Count
The response is of type object
.