Retrieve Multiple Ideas
https://mapi.storyblok.com/v1/spaces/:space_id/ideasReturns an array of idea objects.
Path parameters
Section titled “Path parameters”- :space_id required number
Numeric ID of a space
Query parameters
Section titled “Query parameters”- sort_by string
Possible values:
created_at:asc,created_at:desc,updated_at:asc,updated_at:desc,short_filename:asc,short_filename:desc - per_page number
Default:
25. Max:100. Learn more under Pagination. - filter_by_name string | object
Filter by a specific name of your idea.
- by_status string
Filter ideas based on their status.
- with_tag string
Filter by specific tag(s). Multiple tags can be provided as a comma-separated string (treated like an OR operator). Examples:
with_tag=featuredwith_tag=featured, editors_choice - in_trash boolean
Filter by items in the trash folder
- favourite boolean
Filter by your favourites.
- by_assignee_id number
Filter by the assignee’s id
- discussions Idea's Discussions Object[]
An array of the idea’s discussions objects
- comments Idea's Comments Object[]
An array of idea’s comment objects
- by_ids string
Filter by ids (comma separated)
Response properties
Section titled “Response properties”- idea The Ideation Room Object
A single idea object
Examples
Section titled “Examples”Example Request
curl "https://mapi.storyblok.com/v1/spaces/606/ideas/" \ -H "Authorization: YOUR_OAUTH_TOKEN"// Using the Universal JavaScript Client:// https://github.com/storyblok/storyblok-js-clientStoryblok.get('spaces/606/ideas/', {}) .then(response => { console.log(response) }).catch(error => { console.log(error) })$client = new \Storyblok\ManagementClient('YOUR_OAUTH_TOKEN');
$client->get('spaces/606/ideas/')->getBody();HttpResponse<String> response = Unirest.get("https://mapi.storyblok.com/v1/spaces/606/ideas/") .header("Authorization", "YOUR_OAUTH_TOKEN") .asString();var client = new RestClient("https://mapi.storyblok.com/v1/spaces/606/ideas/");var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "YOUR_OAUTH_TOKEN");IRestResponse response = client.Execute(request);import requests
url = "https://mapi.storyblok.com/v1/spaces/606/ideas/"
querystring = {}
payload = ""headers = { 'Authorization': "YOUR_OAUTH_TOKEN"}
response = requests.request("GET", url, data=payload, headers=headers, params=querystring)
print(response.text)require 'storyblok'client = Storyblok::Client.new(oauth_token: 'YOUR_OAUTH_TOKEN')
client.get('spaces/606/ideas/')import Foundation
let headers = [ "Authorization": "YOUR_OAUTH_TOKEN"]
let request = NSMutableURLRequest(url: NSURL(string: "https://mapi.storyblok.com/v1/spaces/606/ideas/")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0)request.method = "GET"request.allHTTPHeaderFields = headers
let session = URLSession.sharedlet 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()Query Examples
spaces/:space_id/ideas?sort_by=created_at:ascspaces/:space_id/ideas?per_page=10spaces/:space_id/ideas?by_status=in_reviewspaces/:space_id/ideas?by_assignee_id=12345Get in touch with the Storyblok community