Skip to main content

Unsubscribe to an Incubator

This endpoint unsubscribes to an Incubator.

info

This operation requires authentication

info

This api is a toggle, so it's identical to subscribe

HTTP Request

POST /api/v2/incubator/{id}/subscribe/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this Incubator

Example Request

const inputBody = 'null';
const headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

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

Responses

StatusMeaningDescriptionSchema
204No ContentResponse status codeNone