get https://api.pipeless.io/v1/apps//recent-events
Get recent events that have been sent to the specified app.
Log in to see full request history
Response
Get recent events that have been sent to the specified app.
xxxxxxxxxx
10const options = {
method: 'GET',
headers: {accept: 'application/json', 'content-type': 'application/json'},
body: JSON.stringify({limit: 10})
};
fetch('https://api.pipeless.io/v1/apps/123/recent-events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
Try It!
to start a request and see the response here! Or choose an example: