Skip to main content

Get Incubator's Subscribers

This endpoint returns all subscribers of a specific incubator.

info

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

HTTP Request

GET /api/v2/incubator/{id}/subscribers/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this Incubator

Example Request

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

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

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeUser

Example responses

{
"count": "integer",
"next": "string(uri)",
"previous": "string(uri)",
"results": [
{
"id": "integer",
"username": "string",
"real_name": "string",
"avatar": "string",
"ext_id": "integer"
}
]
}