Skip to main content

Get User's Connections

This endpoint retrieves the list of connections of a specific user identified by id

info

his operation requires the community to be set to friendship mode.

info

This operation requires authentication only if content_availability community option is false.

HTTP Request

GET /api/v2/user/{id}/connections/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this user
limitqueryintegerfalseNumber of results to return per page
offsetqueryintegerfalseThe initial index from which to return the results
mutualpathintegerfalseAllowed values: 0-1. Param 0 returns the list of non mutual connections. Param 1 returns only the mutual list

Example Request


const headers = {
'Accept':'application/json',
};

fetch('/api/v2/user/{id}/connections/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
» countintegerfalsenoneTotal results count
» nextstring(uri)¦nullfalsenoneNext page url
» previousstring(uri)¦nullfalsenonePrevious page url
» resultslist(User)falsenoneList of results

Example responses

info

The results always return users sorted by: first mutuals and then non-mutuals.

{
"count": "integer",
"next": "string(uri)",
"previous": "string(uri)",
"results": [
{
"id": "integer",
"username": "string",
"real_name": "string",
"avatar": "string",
"ext_id": "integer",
"followings_counter": "integer",
"followers_counter": "integer",
"posts_counter": "integer",
"discussions_counter": "integer",
"polls_counter": "integer",
"connection_status": "string",
"categories_counter": "integer",
"date_joined": "string",
"bio": "string",
"location": "string",
"location_lat_lng": "string",
"position_lat_lng": "string",
"date_of_birth": "string",
"description": "string",
"gender": "string",
"website": "string",
"cover": "string",
"tags": [{Tag}],
"reputation": "integer",
"community_badge": "boolean",
"reg_approved": "boolean",
"deleted" : "boolean",
"company_name": "string",
"company_role": "string"
},
{...}
]
}