Update an Idea
Update an idea using an idea uuid. In the request body, it's required to pass the idea object.
https://mapi.storyblok.com/v1/spaces/:space_id/ideas/:idea_id
Path Parameters
-
:space_id
required numberNumeric ID of a space
-
:idea_uuid
required stringNumeric uuid of an idea
Request Body Properties
-
idea
The Ideation Room ObjectA single idea object
-
name
stringName of the Idea
-
description
stringA description of your Idea
-
content
objectThe content of your Idea
-
created_at
stringCreation date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
) -
updated_at
stringLatest update date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
) -
deleted_at
stringDeleted date (Format: YYYY-mm-dd HH:MM)
-
status
stringStatus of approval
-
is_private
booleanDefines the public or private status of the idea
-
bookmarks
objectThe external resources URLs and their names with _uid
-
_uid
stringUUID
-
link
stringThe string value of the URL from Idea's external resources.
-
label
stringThe string value of the name of the external resource URL in the Idea.
-
-
internal_tags_list
object[]List of objects containing the details of tags used for the component
-
id
numberId of the tag
-
name
stringName of the tag
-
-
author
objectThe author object inside an Idea
-
id
numberThe numeric ID
-
avatar
stringAvatar of collaborator usually an image
-
userid
stringUser ID of collaborator
-
friendly_name
stringFriendly name of collaborator
-
-
assignee
objectThe assignee object inside an Idea
-
id
numberThe numeric ID
-
avatar
stringAvatar of collaborator usually an image
-
userid
stringUser ID of collaborator
-
friendly_name
stringFriendly name of collaborator
-
-
stories
Idea's Stories ObjectAn array of the idea's stories object
-
name
stringThe complete name provided for the story
-
full_slug
stringThe full slug of the story, combining the parent folder(s) and the designated story slug
-
-
Response Properties
-
idea
The Ideation Room ObjectA single idea object
-
id
numberNumeric ID of the Idea
-
name
stringName of the Idea
-
description
stringA description of your Idea
-
content
objectThe content of your Idea
-
created_at
stringCreation date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
) -
updated_at
stringLatest update date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
) -
deleted_at
stringDeleted date (Format: YYYY-mm-dd HH:MM)
-
status
stringStatus of approval
-
story_ids
number[]List of story ids
-
is_private
booleanDefines the public or private status of the idea
-
bookmarks
objectThe external resources URLs and their names with _uid
-
_uid
stringUUID
-
link
stringThe string value of the URL from Idea's external resources.
-
label
stringThe string value of the name of the external resource URL in the Idea.
-
-
internal_tags_list
object[]List of objects containing the details of tags used for the component
-
id
numberId of the tag
-
name
stringName of the tag
-
-
internal_tag_ids
string[]List of ids of the tags assigned to the component
-
author
objectThe author object inside an Idea
-
id
numberThe numeric ID
-
avatar
stringAvatar of collaborator usually an image
-
userid
stringUser ID of collaborator
-
friendly_name
stringFriendly name of collaborator
-
-
assignee
objectThe assignee object inside an Idea
-
id
numberThe numeric ID
-
avatar
stringAvatar of collaborator usually an image
-
userid
stringUser ID of collaborator
-
friendly_name
stringFriendly name of collaborator
-
-
stories
Idea's Stories ObjectAn array of the idea's stories object
-
name
stringThe complete name provided for the story
-
id
numberThe numeric ID
-
full_slug
stringThe full slug of the story, combining the parent folder(s) and the designated story slug
-
-
curl "https://mapi.storyblok.com/v1/spaces/606/ideas/ab123cd4-5e6f-7gh8-9ij1-01k112l13m1n" \
-X PUT \
-H "Authorization: YOUR_OAUTH_TOKEN" \
-H "Content-Type: application/json" \
-d "{\"idea\": {\"name\": \"My first idea\",\"description\": \"First idea\",\"content\": {},\"deleted_at\": null,\"status\": \"draft\",\"story_ids\": [],\"is_private\": true,\"bookmarks\": [],\"internal_tags_list\": [{\"id\": 12345,\"name\": \"docs\"}],\"internal_tag_ids\": [\"12345\"],\"author\": {\"id\": 67891,\"userid\": \"test@email.com\",\"friendly_name\": \"Jon Doe\",\"avatar\": \"avatars/67891/838dcb304c/avatar.jpg\"},\"assignee\": null,\"stories\": []}}"
// Using the Universal JavaScript Client:
// https://github.com/storyblok/storyblok-js-client
Storyblok.put('/spaces/606/ideas/ab123cd4-5e6f-7gh8-9ij1-01k112l13m1n', {
"idea": {
"name": "My first idea",
"description": "First idea",
"content": {},
"deleted_at": null,
"status": "draft",
"story_ids": [],
"is_private": true,
"bookmarks": [],
"internal_tags_list": [
{
"id": 12345,
"name": "docs"
}
],
"internal_tag_ids": [
"12345"
],
"author": {
"id": 67891,
"userid": "test@email.com",
"friendly_name": "Jon Doe",
"avatar": "avatars/67891/838dcb304c/avatar.jpg"
},
"assignee": null,
"stories": []
}
})
.then(response => {
console.log(response)
}).catch(error => {
console.log(error)
})
$client = new \Storyblok\ManagementClient('YOUR_OAUTH_TOKEN');
$payload = [
"idea" => [
"name" => "My first idea",
"description" => "First idea",
"content" => [],
"deleted_at" => null,
"status" => "draft",
"story_ids" => [],
"is_private" => true,
"bookmarks" => [],
"internal_tags_list" => [
[
"id" => 12345,
"name" => "docs"
]
],
"internal_tag_ids" => [
"12345"
],
"author" => [
"id" => 67891,
"userid" => "test@email.com",
"friendly_name" => "Jon Doe",
"avatar" => "avatars/67891/838dcb304c/avatar.jpg"
],
"assignee" => null,
"stories" => []
]
];
$client->put('/spaces/606/ideas/ab123cd4-5e6f-7gh8-9ij1-01k112l13m1n', $payload)->getBody();
require 'storyblok'
client = Storyblok::Client.new(oauth_token: 'YOUR_OAUTH_TOKEN')
payload = {
"idea" => {
"name" => "My first idea",
"description" => "First idea",
"content" => {},
"deleted_at" => null,
"status" => "draft",
"story_ids" => [],
"is_private" => true,
"bookmarks" => [],
"internal_tags_list" => [
{
"id" => 12345,
"name" => "docs"
}
],
"internal_tag_ids" => [
"12345"
],
"author" => {
"id" => 67891,
"userid" => "test@email.com",
"friendly_name" => "Jon Doe",
"avatar" => "avatars/67891/838dcb304c/avatar.jpg"
},
"assignee" => null,
"stories" => []
}
}
client.put('/spaces/606/ideas/ab123cd4-5e6f-7gh8-9ij1-01k112l13m1n', payload)
HttpResponse<String> response = Unirest.put("https://mapi.storyblok.com/v1/spaces/606/ideas/ab123cd4-5e6f-7gh8-9ij1-01k112l13m1n")
.header("Content-Type", "application/json")
.header("Authorization", "YOUR_OAUTH_TOKEN")
.body("{\"idea\": {\"name\": \"My first idea\",\"description\": \"First idea\",\"content\": {},\"deleted_at\": null,\"status\": \"draft\",\"story_ids\": [],\"is_private\": true,\"bookmarks\": [],\"internal_tags_list\": [{\"id\": 12345,\"name\": \"docs\"}],\"internal_tag_ids\": [\"12345\"],\"author\": {\"id\": 67891,\"userid\": \"test@email.com\",\"friendly_name\": \"Jon Doe\",\"avatar\": \"avatars/67891/838dcb304c/avatar.jpg\"},\"assignee\": null,\"stories\": []}}")
.asString();
var client = new RestClient("https://mapi.storyblok.com/v1/spaces/606/ideas/ab123cd4-5e6f-7gh8-9ij1-01k112l13m1n");
var request = new RestRequest(Method.PUT);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "YOUR_OAUTH_TOKEN");
request.AddParameter("application/json", "{\"idea\": {\"name\": \"My first idea\",\"description\": \"First idea\",\"content\": {},\"deleted_at\": null,\"status\": \"draft\",\"story_ids\": [],\"is_private\": true,\"bookmarks\": [],\"internal_tags_list\": [{\"id\": 12345,\"name\": \"docs\"}],\"internal_tag_ids\": [\"12345\"],\"author\": {\"id\": 67891,\"userid\": \"test@email.com\",\"friendly_name\": \"Jon Doe\",\"avatar\": \"avatars/67891/838dcb304c/avatar.jpg\"},\"assignee\": null,\"stories\": []}}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
import Foundation
let headers = [
"Content-Type": "application/json",
"Authorization": "YOUR_OAUTH_TOKEN"
]
let postData = NSData(data: "{\"idea\": {\"name\": \"My first idea\",\"description\": \"First idea\",\"content\": {},\"deleted_at\": null,\"status\": \"draft\",\"story_ids\": [],\"is_private\": true,\"bookmarks\": [],\"internal_tags_list\": [{\"id\": 12345,\"name\": \"docs\"}],\"internal_tag_ids\": [\"12345\"],\"author\": {\"id\": 67891,\"userid\": \"test@email.com\",\"friendly_name\": \"Jon Doe\",\"avatar\": \"avatars/67891/838dcb304c/avatar.jpg\"},\"assignee\": null,\"stories\": []}}".data(using: String.Encoding.utf8)!)
let request = NSMutableURLRequest(url: NSURL(string: "https://mapi.storyblok.com/v1/spaces/606/ideas/ab123cd4-5e6f-7gh8-9ij1-01k112l13m1n")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0)
request.method = "PUT"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data
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/ideas/ab123cd4-5e6f-7gh8-9ij1-01k112l13m1n"
querystring = {}
payload = "{\"idea\": {\"name\": \"My first idea\",\"description\": \"First idea\",\"content\": {},\"deleted_at\": null,\"status\": \"draft\",\"story_ids\": [],\"is_private\": true,\"bookmarks\": [],\"internal_tags_list\": [{\"id\": 12345,\"name\": \"docs\"}],\"internal_tag_ids\": [\"12345\"],\"author\": {\"id\": 67891,\"userid\": \"test@email.com\",\"friendly_name\": \"Jon Doe\",\"avatar\": \"avatars/67891/838dcb304c/avatar.jpg\"},\"assignee\": null,\"stories\": []}}"
headers = {
'Content-Type': "application/json",
'Authorization': "YOUR_OAUTH_TOKEN"
}
response = requests.request("PUT", url, data=payload, headers=headers, params=querystring)
print(response.text)