Version: 202607
Create blog
POST/openapi/2026-07/blogs
Create a new blog with the provided details.
Request
Query Parameters
blog.Title string
Title of the blog. The title must be between 1 and 100 characters
blog.handle string
SEO URL
blog.seo_title string
SEO title
blog.seo_description string
SEO description
blog.seo_keywords string[]
SEO keywords
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
blog object
Blog
idstring
Blog ID
titlestring
Title of the blog
handlestring
SEO URL
seo_titlestring
SEO title
seo_descriptionstring
SEO description
seo_keywordsstring[]
SEO keywords
created_atstring
Timestamp when blog was created
updated_atstring
Timestamp when blog was updated
{
"code": "string",
"message": "string",
"data": {
"blog": {
"id": "string",
"title": "string",
"handle": "string",
"seo_title": "string",
"seo_description": "string",
"seo_keywords": [
"string"
],
"created_at": "string",
"updated_at": "string"
}
}
}