⚠️Draft Content
Storyblok
Search Storyblok's Documentation
  1. Tag Bulk Association

Management API

Tag Bulk Association

This endpoint is used to add a tag to multiple stories at once.

https://mapi.storyblok.com/v1/spaces/:space-id/tags/bulk_association

Path Parameters

  • :space_id

    required number

    Numeric ID of a space

Request Body Properties

  • stories

    Bulk Tags Association Object[]

    An array of objects, with each object consisting of a story_id of the story you want to add tags to, and a tag_list property as an array of tag names.

    • story_id

      number

      Numeric ID of the Story

    • tag_list

      string[]

      List of tag names

Request
curl "https://mapi.storyblok.com/v1/https://mapi.storyblok.com/v1/spaces/296898/tags/bulk_association" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: YOUR_OAUTH_TOKEN" \
  -d "{\"tags\": {\"stories\": [{\"story_id\": 614542121,\"tag_list\": [\"Featured article\", \"Newsroom\"]},{ \"story_id\": 614544107, \"tag_list\": [\"Blog\", \"Archive\", \"Marketing\"] },{ \"story_id\": 614543950, \"tag_list\": [\"Featured article\", \"Newsroom\"] }]}}"
Request
// Using the Universal JavaScript Client:
// https://github.com/storyblok/storyblok-js-client
Storyblok.post('/https://mapi.storyblok.com/v1/spaces/296898/tags/bulk_association', {
  "tags": {
    "stories": [
      {
        "story_id": 614542121,
        "tag_list": ["Featured article", "Newsroom"]
      },
      { "story_id": 614544107, "tag_list": ["Blog", "Archive", "Marketing"] },
      { "story_id": 614543950, "tag_list": ["Featured article", "Newsroom"] }
    ]
  }
}
)
  .then(response => {
    console.log(response)
  }).catch(error => { 
    console.log(error)
  })
Request
$client = new \Storyblok\ManagementClient('YOUR_OAUTH_TOKEN');

$payload = [
  "tags" =>  [
    "stories" =>  [
      [
        "story_id" =>  614542121,
        "tag_list" =>  ["Featured article", "Newsroom"]
      ],
      [ "story_id" =>  614544107, "tag_list" =>  ["Blog", "Archive", "Marketing"] ],
      [ "story_id" =>  614543950, "tag_list" =>  ["Featured article", "Newsroom"] ]
    ]
  ]
]
;

$client->post('/https://mapi.storyblok.com/v1/spaces/296898/tags/bulk_association', $payload)->getBody();
Request
require 'storyblok'
client = Storyblok::Client.new(oauth_token: 'YOUR_OAUTH_TOKEN')

payload = {
  "tags" =>  {
    "stories" =>  [
      {
        "story_id" =>  614542121,
        "tag_list" =>  ["Featured article", "Newsroom"]
      },
      { "story_id" =>  614544107, "tag_list" =>  ["Blog", "Archive", "Marketing"] },
      { "story_id" =>  614543950, "tag_list" =>  ["Featured article", "Newsroom"] }
    ]
  }
}


client.post('/https://mapi.storyblok.com/v1/spaces/296898/tags/bulk_association', payload)
Request
HttpResponse<String> response = Unirest.post("https://mapi.storyblok.com/v1/https://mapi.storyblok.com/v1/spaces/296898/tags/bulk_association")
  .header("Content-Type", "application/json")
  .header("Authorization", "YOUR_OAUTH_TOKEN")
  .body("{\"tags\": {\"stories\": [{\"story_id\": 614542121,\"tag_list\": [\"Featured article\", \"Newsroom\"]},{ \"story_id\": 614544107, \"tag_list\": [\"Blog\", \"Archive\", \"Marketing\"] },{ \"story_id\": 614543950, \"tag_list\": [\"Featured article\", \"Newsroom\"] }]}}")
  .asString();
Request
var client = new RestClient("https://mapi.storyblok.com/v1/https://mapi.storyblok.com/v1/spaces/296898/tags/bulk_association");
var request = new RestRequest(Method.POST);

request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "YOUR_OAUTH_TOKEN");
request.AddParameter("application/json", "{\"tags\": {\"stories\": [{\"story_id\": 614542121,\"tag_list\": [\"Featured article\", \"Newsroom\"]},{ \"story_id\": 614544107, \"tag_list\": [\"Blog\", \"Archive\", \"Marketing\"] },{ \"story_id\": 614543950, \"tag_list\": [\"Featured article\", \"Newsroom\"] }]}}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Request
import Foundation

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

let postData = NSData(data: "{\"tags\": {\"stories\": [{\"story_id\": 614542121,\"tag_list\": [\"Featured article\", \"Newsroom\"]},{ \"story_id\": 614544107, \"tag_list\": [\"Blog\", \"Archive\", \"Marketing\"] },{ \"story_id\": 614543950, \"tag_list\": [\"Featured article\", \"Newsroom\"] }]}}".data(using: String.Encoding.utf8)!)
let request = NSMutableURLRequest(url: NSURL(string: "https://mapi.storyblok.com/v1/https://mapi.storyblok.com/v1/spaces/296898/tags/bulk_association")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0)

request.method = "POST"
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/https://mapi.storyblok.com/v1/spaces/296898/tags/bulk_association"

querystring = {}

payload = "{\"tags\": {\"stories\": [{\"story_id\": 614542121,\"tag_list\": [\"Featured article\", \"Newsroom\"]},{ \"story_id\": 614544107, \"tag_list\": [\"Blog\", \"Archive\", \"Marketing\"] },{ \"story_id\": 614543950, \"tag_list\": [\"Featured article\", \"Newsroom\"] }]}}"
headers = {
  'Content-Type': "application/json",
  'Authorization': "YOUR_OAUTH_TOKEN"
}

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

print(response.text)