get https://app.hive.com/api/v1/workspaces//actions
Get all actions for a given workspace that the user has access to
Log in to see full request history
Responses
Get all actions for a given workspace that the user has access to
xxxxxxxxxx
13var userId = "USER_ID";
var workspaceId = "WORKSPACE_ID";
var apiKey = "API_KEY";
var baseUrl = "https://app.hive.com/api/v1/";
var endpoint = "workspaces/" + workspaceId + "/actions";
var qs = "?user_id=" + userId + "&api_key=" + apiKey + "&sortBy=title asc";
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: