Open2b versione 7.5

blog-tags

Returns the blog tags.

Request

HTTP POST
/api/v10/storefront.blog-tags
{
  "ids" : [ 71, 126, … ], // identifiers - int(1…)
  "fields" : [ "id", "name", "content", … ] // fields to return - string
}

Response

{
  "status" : "ok",
  "tags" : [ {
    "id" : 71, // identifier - int(1…)
    "name" : "", // title - string(0…60)
    "content" : "Our company...", // content as HTML - string(0…65535)
    "seo" : {
      "title" : "", // title for SEO - string(0…255)
      "description" : "" // description for SEO - string(0…255)
    },
    "canonicalURL" : "https://…", // canonical URL - string(10…)
    "image" : { // small image (can be null)
      "url" : "https://…", // url - string(10…255)
      "width" : 500, // width in pixels - int(1…2500)
      "height" : 400 // height in pixels - int(1…2500)
    }
  }, … ]
}