openapi: 3.1.0 info: title: Shopify Admin REST About Blog API description: The Shopify Admin REST API lets you build apps and integrations that extend and enhance the Shopify admin. Access products, customers, orders, inventory, fulfillment, and more. Endpoints are organized by resource type and versioned by release date. version: 2025-01 contact: name: Shopify url: https://shopify.dev/docs/api/admin-rest email: api@shopify.com license: name: Shopify API Terms url: https://www.shopify.com/legal/api-terms x-date: '2026-03-04' servers: - url: https://{store}.myshopify.com/admin/api/2025-01 description: Shopify Admin REST API variables: store: default: my-store description: The Shopify store subdomain security: - AccessToken: [] tags: - name: Blog paths: /admin/api/2020-01/blogs/{blog_id}/articles.json: get: summary: Shopify Retrieves A List Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#index-2020-01 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: limit description: "The maximum number of results to retrieve.\n (default: 50, maximum: 250)" schema: {} required: false - in: query name: since_id description: Restrict results to after the specified ID. schema: {} required: false - in: query name: created_at_min description: 'Show articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Show articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Show articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Show articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Show articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Show articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Retrieve results based on their published status.\n (default: any)\n \n published: Show only published articles.\n unpublished: Show only unpublished articles.\n any: Show articles of any published status." schema: {} required: false - in: query name: handle description: Retrieve an article with a specific handle. schema: {} required: false - in: query name: tag description: Filter articles with a specific tag. schema: {} required: false - in: query name: author description: Filter articles by article author. schema: {} required: false - in: query name: fields description: Show only certain fields, specified by a comma-separated list of field names. schema: {} required: false tags: - Blog responses: '200': description: '' operationId: deprecated_202001_get_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true post: requestBody: content: application/json: schema: {} examples: example1: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 summary: Create an article with HTML markup for a blog example2: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published: false summary: Create an unpublished article for a blog example3: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: attachment: 'R0lGODlhAQABAIAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw== ' summary: Create an article with a base64 encoded image example4: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: src: http://example.com/rails_logo.gif alt: Rails logo summary: Create an article with an image, which will be downloaded by Shopify example5: value: article: body: something summary: Creating an article without a title fails and returns an error example6: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 metafields: - key: new value: newvalue value_type: string namespace: global summary: Create an article with a metafield summary: Shopify Creates An Article For A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#create-2020-01 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id tags: - Blog responses: '200': description: '' operationId: deprecated_202001_create_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/2020-01/blogs/{blog_id}/articles/count.json: get: summary: Shopify Retrieves A Count Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#count-2020-01 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: created_at_min description: 'Count articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Count articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Count articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Count articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Count articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Count articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Count articles with a given published status.\n (default: any)\n \n published: Count only published articles.\n unpublished: Count only unpublished articles.\n any: Count all articles." schema: {} required: false tags: - Blog responses: '200': description: '' operationId: deprecated_202001_get_blogs_param_blog_id_articles_count x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/2020-04/blogs/{blog_id}/articles.json: get: summary: Shopify Retrieves A List Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#index-2020-04 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: limit description: "The maximum number of results to retrieve.\n (default: 50, maximum: 250)" schema: {} required: false - in: query name: since_id description: Restrict results to after the specified ID. schema: {} required: false - in: query name: created_at_min description: 'Show articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Show articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Show articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Show articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Show articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Show articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Retrieve results based on their published status.\n (default: any)\n \n published: Show only published articles.\n unpublished: Show only unpublished articles.\n any: Show articles of any published status." schema: {} required: false - in: query name: handle description: Retrieve an article with a specific handle. schema: {} required: false - in: query name: tag description: Filter articles with a specific tag. schema: {} required: false - in: query name: author description: Filter articles by article author. schema: {} required: false - in: query name: fields description: Show only certain fields, specified by a comma-separated list of field names. schema: {} required: false tags: - Blog responses: '200': description: '' operationId: deprecated_202004_get_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true post: requestBody: content: application/json: schema: {} examples: example1: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 summary: Create an article with HTML markup for a blog example2: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published: false summary: Create an unpublished article for a blog example3: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: attachment: 'R0lGODlhAQABAIAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw== ' summary: Create an article with a base64 encoded image example4: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: src: http://example.com/rails_logo.gif alt: Rails logo summary: Create an article with an image, which will be downloaded by Shopify example5: value: article: body: something summary: Creating an article without a title fails and returns an error example6: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 metafields: - key: new value: newvalue value_type: string namespace: global summary: Create an article with a metafield summary: Shopify Creates An Article For A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#create-2020-04 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id tags: - Blog responses: '200': description: '' operationId: deprecated_202004_create_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/2020-04/blogs/{blog_id}/articles/count.json: get: summary: Shopify Retrieves A Count Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#count-2020-04 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: created_at_min description: 'Count articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Count articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Count articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Count articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Count articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Count articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Count articles with a given published status.\n (default: any)\n \n published: Count only published articles.\n unpublished: Count only unpublished articles.\n any: Count all articles." schema: {} required: false tags: - Blog responses: '200': description: '' operationId: deprecated_202004_get_blogs_param_blog_id_articles_count x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/2020-07/blogs/{blog_id}/articles.json: get: summary: Shopify Retrieves A List Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#index-2020-07 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: limit description: "The maximum number of results to retrieve.\n (default: 50, maximum: 250)" schema: {} required: false - in: query name: since_id description: Restrict results to after the specified ID. schema: {} required: false - in: query name: created_at_min description: 'Show articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Show articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Show articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Show articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Show articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Show articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Retrieve results based on their published status.\n (default: any)\n \n published: Show only published articles.\n unpublished: Show only unpublished articles.\n any: Show articles of any published status." schema: {} required: false - in: query name: handle description: Retrieve an article with a specific handle. schema: {} required: false - in: query name: tag description: Filter articles with a specific tag. schema: {} required: false - in: query name: author description: Filter articles by article author. schema: {} required: false - in: query name: fields description: Show only certain fields, specified by a comma-separated list of field names. schema: {} required: false tags: - Blog responses: '200': description: '' operationId: deprecated_202007_get_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true post: requestBody: content: application/json: schema: {} examples: example1: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 summary: Create an article with HTML markup for a blog example2: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published: false summary: Create an unpublished article for a blog example3: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: attachment: 'R0lGODlhAQABAIAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw== ' summary: Create an article with a base64 encoded image example4: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: src: http://example.com/rails_logo.gif alt: Rails logo summary: Create an article with an image, which will be downloaded by Shopify example5: value: article: body: something summary: Creating an article without a title fails and returns an error example6: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 metafields: - key: new value: newvalue value_type: string namespace: global summary: Create an article with a metafield summary: Shopify Creates An Article For A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#create-2020-07 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id tags: - Blog responses: '200': description: '' operationId: deprecated_202007_create_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/2020-07/blogs/{blog_id}/articles/count.json: get: summary: Shopify Retrieves A Count Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#count-2020-07 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: created_at_min description: 'Count articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Count articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Count articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Count articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Count articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Count articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Count articles with a given published status.\n (default: any)\n \n published: Count only published articles.\n unpublished: Count only unpublished articles.\n any: Count all articles." schema: {} required: false tags: - Blog responses: '200': description: '' operationId: deprecated_202007_get_blogs_param_blog_id_articles_count x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/2020-10/blogs/{blog_id}/articles.json: get: summary: Shopify Retrieves A List Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#index-2020-10 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: limit description: "The maximum number of results to retrieve.\n (default: 50, maximum: 250)" schema: {} required: false - in: query name: since_id description: Restrict results to after the specified ID. schema: {} required: false - in: query name: created_at_min description: 'Show articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Show articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Show articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Show articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Show articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Show articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Retrieve results based on their published status.\n (default: any)\n \n published: Show only published articles.\n unpublished: Show only unpublished articles.\n any: Show articles of any published status." schema: {} required: false - in: query name: handle description: Retrieve an article with a specific handle. schema: {} required: false - in: query name: tag description: Filter articles with a specific tag. schema: {} required: false - in: query name: author description: Filter articles by article author. schema: {} required: false - in: query name: fields description: Show only certain fields, specified by a comma-separated list of field names. schema: {} required: false tags: - Blog responses: '200': description: '' operationId: get_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true post: requestBody: content: application/json: schema: {} examples: example1: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 summary: Create an article with HTML markup for a blog example2: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published: false summary: Create an unpublished article for a blog example3: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: attachment: 'R0lGODlhAQABAIAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw== ' summary: Create an article with a base64 encoded image example4: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: src: http://example.com/rails_logo.gif alt: Rails logo summary: Create an article with an image, which will be downloaded by Shopify example5: value: article: body: something summary: Creating an article without a title fails and returns an error example6: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 metafields: - key: new value: newvalue value_type: string namespace: global summary: Create an article with a metafield summary: Shopify Creates An Article For A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#create-2020-10 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id tags: - Blog responses: '200': description: '' operationId: create_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/2020-10/blogs/{blog_id}/articles/count.json: get: summary: Shopify Retrieves A Count Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#count-2020-10 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: created_at_min description: 'Count articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Count articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Count articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Count articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Count articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Count articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Count articles with a given published status.\n (default: any)\n \n published: Count only published articles.\n unpublished: Count only unpublished articles.\n any: Count all articles." schema: {} required: false tags: - Blog responses: '200': description: '' operationId: get_blogs_param_blog_id_articles_count x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/2021-01/blogs/{blog_id}/articles.json: get: summary: Shopify Retrieves A List Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#index-2021-01 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: limit description: "The maximum number of results to retrieve.\n (default: 50, maximum: 250)" schema: {} required: false - in: query name: since_id description: Restrict results to after the specified ID. schema: {} required: false - in: query name: created_at_min description: 'Show articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Show articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Show articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Show articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Show articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Show articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Retrieve results based on their published status.\n (default: any)\n \n published: Show only published articles.\n unpublished: Show only unpublished articles.\n any: Show articles of any published status." schema: {} required: false - in: query name: handle description: Retrieve an article with a specific handle. schema: {} required: false - in: query name: tag description: Filter articles with a specific tag. schema: {} required: false - in: query name: author description: Filter articles by article author. schema: {} required: false - in: query name: fields description: Show only certain fields, specified by a comma-separated list of field names. schema: {} required: false tags: - Blog responses: '200': description: '' operationId: deprecated_202101_get_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true post: requestBody: content: application/json: schema: {} examples: example1: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 summary: Create an article with HTML markup for a blog example2: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published: false summary: Create an unpublished article for a blog example3: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: attachment: 'R0lGODlhAQABAIAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw== ' summary: Create an article with a base64 encoded image example4: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: src: http://example.com/rails_logo.gif alt: Rails logo summary: Create an article with an image, which will be downloaded by Shopify example5: value: article: body: something summary: Creating an article without a title fails and returns an error example6: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 metafields: - key: new value: newvalue value_type: string namespace: global summary: Create an article with a metafield summary: Shopify Creates An Article For A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#create-2021-01 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id tags: - Blog responses: '200': description: '' operationId: deprecated_202101_create_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/2021-01/blogs/{blog_id}/articles/count.json: get: summary: Shopify Retrieves A Count Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#count-2021-01 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: created_at_min description: 'Count articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Count articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Count articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Count articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Count articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Count articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Count articles with a given published status.\n (default: any)\n \n published: Count only published articles.\n unpublished: Count only unpublished articles.\n any: Count all articles." schema: {} required: false tags: - Blog responses: '200': description: '' operationId: deprecated_202101_get_blogs_param_blog_id_articles_count x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/unstable/blogs/{blog_id}/articles.json: get: summary: Shopify Retrieves A List Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#index-unstable parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: limit description: "The maximum number of results to retrieve.\n (default: 50, maximum: 250)" schema: {} required: false - in: query name: since_id description: Restrict results to after the specified ID. schema: {} required: false - in: query name: created_at_min description: 'Show articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Show articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Show articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Show articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Show articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Show articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Retrieve results based on their published status.\n (default: any)\n \n published: Show only published articles.\n unpublished: Show only unpublished articles.\n any: Show articles of any published status." schema: {} required: false - in: query name: handle description: Retrieve an article with a specific handle. schema: {} required: false - in: query name: tag description: Filter articles with a specific tag. schema: {} required: false - in: query name: author description: Filter articles by article author. schema: {} required: false - in: query name: fields description: Show only certain fields, specified by a comma-separated list of field names. schema: {} required: false tags: - Blog responses: '200': description: '' operationId: deprecated_unstable_get_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true post: requestBody: content: application/json: schema: {} examples: example1: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 summary: Create an article with HTML markup for a blog example2: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published: false summary: Create an unpublished article for a blog example3: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: attachment: 'R0lGODlhAQABAIAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw== ' summary: Create an article with a base64 encoded image example4: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 image: src: http://example.com/rails_logo.gif alt: Rails logo summary: Create an article with an image, which will be downloaded by Shopify example5: value: article: body: something summary: Creating an article without a title fails and returns an error example6: value: article: title: My new Article title author: John Smith tags: This Post, Has Been Tagged body_html: '

I like articles

Yea, I like posting them through REST.

' published_at: Thu Mar 24 15:45:47 UTC 2011 metafields: - key: new value: newvalue value_type: string namespace: global summary: Create an article with a metafield summary: Shopify Creates An Article For A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#create-unstable parameters: - in: path name: blog_id required: true schema: type: string description: blog_id tags: - Blog responses: '200': description: '' operationId: deprecated_unstable_create_blogs_param_blog_id_articles x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/unstable/blogs/{blog_id}/articles/count.json: get: summary: Shopify Retrieves A Count Of All Articles From A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/article#count-unstable parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: created_at_min description: 'Count articles created after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: created_at_max description: 'Count articles created before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_min description: 'Count articles last updated after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: updated_at_max description: 'Count articles last updated before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_min description: 'Count articles published after date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_at_max description: 'Count articles published before date (format: 2014-04-25T16:15:47-04:00).' schema: {} required: false - in: query name: published_status description: "Count articles with a given published status.\n (default: any)\n \n published: Count only published articles.\n unpublished: Count only unpublished articles.\n any: Count all articles." schema: {} required: false tags: - Blog responses: '200': description: '' operationId: deprecated_unstable_get_blogs_param_blog_id_articles_count x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/2020-01/blogs.json: post: requestBody: content: application/json: schema: {} examples: example1: value: blog: title: Apple main blog summary: Create a new empty blog example2: value: blog: body: foobar summary: Trying to create a blog without a title will return an error example3: value: blog: title: Apple main blog metafields: - key: new value: newvalue value_type: string namespace: global summary: Create a new empty blog with a metafield summary: Shopify Create A New Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/blog#create-2020-01 parameters: [] tags: - Blog responses: '200': description: '' operationId: deprecated_202001_create_blogs x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true /admin/api/2020-01/blogs/{blog_id}.json: get: summary: Shopify Get A Single Blog By Its Id description: https://shopify.dev/docs/admin-api/rest/reference/online-store/blog#show-2020-01 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id - in: query name: fields description: comma-separated list of fields to include in the response schema: {} required: false tags: - Blog responses: '200': description: '' operationId: deprecated_202001_get_blogs_param_blog_id x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true put: requestBody: content: application/json: schema: {} examples: example1: value: blog: id: 241253187 title: IPod Updates summary: Update an existing blog title example2: value: blog: id: 241253187 title: IPod Updates handle: ipod-updates commentable: moderate summary: Update an existing blog title and handle and also activate comments example3: value: blog: id: 241253187 metafields: - key: new value: newvalue value_type: string namespace: global summary: Add a metafield to an existing blog summary: Shopify Update A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/blog#update-2020-01 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id tags: - Blog responses: '200': description: '' operationId: deprecated_202001_update_blogs_param_blog_id x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true delete: summary: Shopify Delete A Blog description: https://shopify.dev/docs/admin-api/rest/reference/online-store/blog#destroy-2020-01 parameters: - in: path name: blog_id required: true schema: type: string description: blog_id tags: - Blog responses: '200': description: '' operationId: deprecated_202001_delete_blogs_param_blog_id x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true components: securitySchemes: AccessToken: type: apiKey name: X-Shopify-Access-Token in: header description: Access token obtained via OAuth