Retrieve Multiple Tasks
Returns an array of task objects. This endpoint is paged.
https://mapi.storyblok.com/v1/spaces/:space_id/tasks/
Path Parameters
-
:space_id
required numberNumeric ID of a space
Response Properties
-
tasks
The Task Object[]An array of task objects
-
id
numberNumeric ID of your task
-
name
stringGiven name of your task
-
description
stringA brief description of your task for your editors
-
task_type
stringDefault:
webhook
; Currently available:webhook
-
last_execution
stringDate and time of last execution (Format: YYYY-mm-dd HH:MM)
-
lambda_code
stringBeta: Lambda function code
-
last_response
stringLast execution response log
-
webhook_url
stringURL of webhook that should be called when tasks is being executed
-
user_dialog
objectUser dialog configuration
-
curl "https://mapi.storyblok.com/v1/spaces/606/tasks/" \
-X GET \
-H "Authorization: YOUR_OAUTH_TOKEN" \
-H "Content-Type: application/json"
// Using the Universal JavaScript Client:
// https://github.com/storyblok/storyblok-js-client
Storyblok.get('/spaces/606/tasks/', {})
.then(response => {
console.log(response)
}).catch(error => {
console.log(error)
})
$client = new \Storyblok\ManagementClient('YOUR_OAUTH_TOKEN');
$client->get('/spaces/606/tasks/')->getBody();
require 'storyblok'
client = Storyblok::Client.new(oauth_token: 'YOUR_OAUTH_TOKEN')
client.false('/spaces/606/tasks/')
HttpResponse<String> response = Unirest.get("https://mapi.storyblok.com/v1/spaces/606/tasks/")
.header("Authorization", "YOUR_OAUTH_TOKEN")
.asString();
var client = new RestClient("https://mapi.storyblok.com/v1/spaces/606/tasks/");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "YOUR_OAUTH_TOKEN");
IRestResponse response = client.Execute(request);
import Foundation
let headers = [
"Content-Type": "application/json",
"Authorization": "YOUR_OAUTH_TOKEN"
]
let request = NSMutableURLRequest(url: NSURL(string: "https://mapi.storyblok.com/v1/spaces/606/tasks/")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0)
request.method = "GET"
request.allHTTPHeaderFields = headers
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
import requests
url = "https://mapi.storyblok.com/v1/spaces/606/tasks/"
querystring = {}
payload = ""
headers = {
'Content-Type': "application/json",
'Authorization': "YOUR_OAUTH_TOKEN"
}
response = requests.request("GET", url, data=payload, headers=headers, params=querystring)
print(response.text)