get https://app.hive.com/api/v1/workspaces//users
Get all users for a given workspace that the user has access to
Log in to see full request history
Responses
Get all users for a given workspace that the user has access to
xxxxxxxxxx
14var userId = "USER_ID";
var workspaceId = "WORKSPACE_ID";
var apiKey = "API_KEY";
var baseUrl = "https://app.hive.com/api/v1/";
var endpoint = "workspaces/" + workspaceId + "/users";
var qs = "?user_id=" + userId + "&api_key=" + apiKey;
var url = baseUrl + endpoint + qs;
​
$.ajax({
url: url,
}).done(function(data) {
console.log(data);
});
​
Try It!
to start a request and see the response here! Or choose an example: