API REFERENCE
User-list
Get user-list
1min
Gets the list of monitored users
GET
Request
Path Params
id
String
required
ID of the monitor
Header Parameters
Authorization
String
required
Bearer access token, it returned by the /auth
Curl
Node.js
JS
Python
Ruby
1var request = require('request');
2var options = {
3 'method': 'GET',
4 'url': 'https://api-sandbox.klavi.ai/monitor/v1/monitors/{id}/user-list',
5 'headers': {
6 'Authorization': 'string'
7 }
8};
9request(options, function (error, response) {
10 if (error) throw new Error(error);
11 console.log(response.body);
12});
13
Responses
200
1{
2 "download":
3 {
4 "url": "https://amzn-s3-demo-bucket.s3.amazonaws.com/batata",
5 "httpMethod": "GET"
6 },
7 "createAt": "2025-03-20T19:03:59Z",
8 "updateAt": "2025-03-20T19:03:59Z"
9}
Updated 25 Apr 2025
Did this page help you?