Skip to main content

Get User's Connection Requests sent

This endpoint retrieves the list of connection requests sent by the logged-in user.

info

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

info

This operation requires authentication.

HTTP Request

GET /api/v2/user/connection/requests_sent/

Parameters

NameInTypeRequiredDescription
limitqueryintegerfalseNumber of results to return per page
offsetqueryintegerfalseThe initial index from which to return the results

Example Request

const headers = {
'Accept':'application/json',
'Authorization: Bearer <token>'
};

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

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeConnection Request

Response Schema

Status Code 200

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

Example responses

{
"count": "integer",
"next": "string(uri)",
"previous": "string(uri)",
"results": [
{
"to_user": {User},
"created": "string",
"rejected": "string",
"viewed": "string"
}
]
}