Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Follow Count
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
Show child attributes