1. Update a Preset

Update a Preset

/spaces/:space_id/presets/:preset_id

Path Parameters

  • :space_id

    required number

    Numeric id of a space

  • :preset_id

    required number

    Numeric ID of your preset

Request Body Properties

  • preset

    The Preset Object

    A single preset object

    • id

      number

      Numeric ID of your preset

    • name

      string

      Given name of your preset

    • preset

      object

      fields of the component filled with content

    • component_id

      number

      ID of the component the preset should be connected

    • image

      string or null

      Screenshot or other preview image for your editor; Default: null

Response Properties

  • preset

    The Preset Object

    A single preset object

    • id

      number

      Numeric ID of your preset

    • name

      string

      Given name of your preset

    • preset

      object

      fields of the component filled with content

    • component_id

      number

      ID of the component the preset should be connected

    • image

      string or null

      Screenshot or other preview image for your editor; Default: null

    • created_at

      string

      Creation date (Format: yyyy-MM-dd'T'HH:mm:ssZ)

    • updated_at

      string

      Latest update date (Format: yyyy-MM-dd'T'HH:mm:ssZ)

Example Request

Request
curl "https://mapi.storyblok.com/v1/spaces/606/presets/1814" \ 
  -X PUT \
  -H "Authorization: YOUR_OAUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d "{\"preset\": {\"id\": 1814,\"name\": \"Teaser with headline and image\",\"preset\": {\"headline\": \"This is a default value for the preset!\",\"image\": \"//a.storyblok.com/f/606/...\"},\"component_id\": 62,}}"
Request
// Using the Universal JavaScript Client:
// https://github.com/storyblok/storyblok-js-client
Storyblok.put('/spaces/606/presets/1814', {
  "preset": {
    "id": 1814,
    "name": "Teaser with headline and image",
    "preset": {
      "headline": "This is a default value for the preset!",
      "image": "//a.storyblok.com/f/606/..."
    },
    "component_id": 62,
  }
})
  .then(response => {
    console.log(response)
  }).catch(error => { 
    console.log(error)
  })
Request
$client = new \Storyblok\Client('YOUR_STORYBLOK_SPACE_ACCESS_TOKEN');

$payload = [
  "preset" =>  [
    "id" =>  1814,
    "name" =>  "Teaser with headline and image",
    "preset" =>  [
      "headline" =>  "This is a default value for the preset!",
      "image" =>  "//a.storyblok.com/f/606/..."
    ],
    "component_id" =>  62,
  ]
];

$client->put('/spaces/606/presets/1814', $payload)->getBody();
Request
require 'storyblok'
client = Storyblok::Client.new(oauth_token: 'YOUR_OAUTH_TOKEN')

payload = {
  "preset" =>  {
    "id" =>  1814,
    "name" =>  "Teaser with headline and image",
    "preset" =>  {
      "headline" =>  "This is a default value for the preset!",
      "image" =>  "//a.storyblok.com/f/606/..."
    },
    "component_id" =>  62,
  }
}

client.put('/spaces/606/presets/1814', payload)
Request
HttpResponse<String> response = Unirest.put("https://mapi.storyblok.com/v1/spaces/606/presets/1814")
  .header("Content-Type", "application/json")
  .header("Authorization", "YOUR_OAUTH_TOKEN")
  .body("{\"preset\": {\"id\": 1814,\"name\": \"Teaser with headline and image\",\"preset\": {\"headline\": \"This is a default value for the preset!\",\"image\": \"//a.storyblok.com/f/606/...\"},\"component_id\": 62,}}")
  .asString();
Request
var client = new RestClient("https://mapi.storyblok.com/v1/spaces/606/presets/1814");
var request = new RestRequest(Method.PUT);

request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "YOUR_OAUTH_TOKEN");
request.AddParameter("application/json", "{\"preset\": {\"id\": 1814,\"name\": \"Teaser with headline and image\",\"preset\": {\"headline\": \"This is a default value for the preset!\",\"image\": \"//a.storyblok.com/f/606/...\"},\"component_id\": 62,}}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Request
import Foundation

let headers = [
  "Content-Type": "application/json",
  "Authorization": "YOUR_OAUTH_TOKEN"
]

let postData = NSData(data: "{\"preset\": {\"id\": 1814,\"name\": \"Teaser with headline and image\",\"preset\": {\"headline\": \"This is a default value for the preset!\",\"image\": \"//a.storyblok.com/f/606/...\"},\"component_id\": 62,}}".data(using: String.Encoding.utf8)!)

let request = NSMutableURLRequest(url: NSURL(string: "https://mapi.storyblok.com/v1/spaces/606/presets/1814")! 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()
Request
import requests

url = "https://mapi.storyblok.com/v1/spaces/606/presets/1814"

querystring = {}

payload = "{\"preset\": {\"id\": 1814,\"name\": \"Teaser with headline and image\",\"preset\": {\"headline\": \"This is a default value for the preset!\",\"image\": \"//a.storyblok.com/f/606/...\"},\"component_id\": 62,}}"
headers = {
  'Content-Type': "application/json",
  'Authorization': "YOUR_OAUTH_TOKEN"
}

response = requests.request("PUT", url, data=payload, headers=headers, params=querystring)

print(response.text)

You will receive a fully loaded preset object as response.