Skip to main content

List Activity Log Entries

GET /tlip-connector/activity-logs

Parameters:

NameInTypeRequiredDescription
statusqueryanyfalseJob statuses.
cursorquerystringfalseThe cursor for paged requests.

Responses:

StatusMeaningDescriptionSchema
200OKGet the details for an item.None
400Bad RequestSomething went wrong with the request, see the error field for more details.BadRequestResponse
401UnauthorizedYou are not authorized to use the API or no credentials were supplied.UnauthorizedResponse

Note: To perform this operation, you must be authenticated by means of one of the following methods: apiKeyQueryAuthScheme, apiKeyHeaderAuthScheme, jwtBearerAuthScheme, jwtCookieAuthScheme.

Code Sample:

const fetch = require('node-fetch');
const headers = {
'Accept':'application/json'
};





fetch('/tlip-connector/activity-logs',
{
method: 'GET',

headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Example Responses 400 Response

{
"error": "string"
}