List blog articles
Lists the articles of a blog. Cursor-paginated: pass limit (1-50,
default 20) and the cursor from a previous response's nextCursor;
nextCursor is null when there are no more pages.
Supported on Shopify (platform shopify). Accounts on platforms
without blogs support return 400; a blogs-capable platform that lacks
this specific operation returns 405.
Authorization
bearerAuth API key authentication: send your Zernio API key in the Authorization header, prefixed with Bearer.
In: header
Path Parameters
Connected Shopify SocialAccount id.
Platform-native numeric blog id. Non-numeric values return 400.
^\d+$Query Parameters
Page size (1-50).
1 <= value <= 5020Opaque cursor from a previous response. Omit for the first page.
Response Body
application/json
application/json
application/json
{ "platform": "shopify", "articles": [ { "id": "string", "blogId": "string", "platform": "shopify", "title": "string", "bodyHtml": "string", "handle": "string", "tags": [ "string" ], "author": "string", "excerpt": "string", "image": { "url": "string", "altText": "string" }, "isPublished": true, "publishedAt": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" } ], "nextCursor": "string"}Delete a blog
Deletes the blog AND every article in it. The delete happens on the platform and is permanent; Zernio stores nothing to restore it from. Supported on Shopify (platform `shopify`). Accounts on platforms without blogs support return 400; a blogs-capable platform that lacks this specific operation returns 405.
Create a blog article
Creates an article on the blog. Publishing behavior: - `isPublished: false` keeps the article as a draft. - A future `publishDate` schedules publication natively on the platform; the platform publishes it at that time with no Zernio queue involved. - `seo.title` / `seo.description` map to Shopify's global `title_tag` and `description_tag` metafields (the fields Shopify themes read for the page title and meta description). Supported on Shopify (platform `shopify`). Accounts on platforms without blogs support return 400; a blogs-capable platform that lacks this specific operation returns 405.