Users
This is an object representing a user in LinearFox. It contains public information about the user, such as their name, email address, and phone number if its public.
GET
/v1/user/data/
(GET profile data)
Parameters:
name type data type description id Required Path string User ID
Responses:
status code data type description 200
object
User data
Example:
curl --location --request GET 'https://api.linearfox.com/v1/user/data/1'
GET
/v1/user/activity/
(User activity - Projects, Repos, etc)
Parameters:
name type data type description id Required Path string User ID
Responses:
status code data type description 200
object
{status: '200', result: 'User activity'}
Example:
curl --location --request GET 'https://api.linearfox.com/v1/user/activity/1'
GET
/v1/user/followers/
(User followers)
Parameters:
name type data type description userid Required Query Number User ID
Responses:
status code data type description 200
object
{status: '200', followers: 'User followers', following: 'User following'}
Example:
curl --location --request GET 'https://api.linearfox.com/v1/user/followers?userid=1'