# blogCreate - admin - MUTATION Version: unstable ## Description Creates a blog. ### Access Scopes Any of `write_content`, `write_online_store_pages` access scopes. ## Arguments * [blog](/docs/api/admin/unstable/input-objects/BlogCreateInput): BlogCreateInput! - The properties of the new blog. ## Returns * [blog](/docs/api/admin/unstable/objects/Blog): Blog The blog that was created. * [userErrors](/docs/api/admin/unstable/objects/BlogCreateUserError): BlogCreateUserError! The list of errors that occurred from executing the mutation. ## Examples ### Create a new Blog Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/unstable/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation CreateBlog($blog: BlogCreateInput!) { blogCreate(blog: $blog) { blog { id title handle templateSuffix commentPolicy } userErrors { code field message } } }\",\n \"variables\": {\n \"blog\": {\n \"title\": \"New Blog Title\",\n \"handle\": \"new-blog-title\",\n \"templateSuffix\": \"standard\",\n \"commentPolicy\": \"MODERATED\"\n }\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation CreateBlog($blog: BlogCreateInput!) {\n blogCreate(blog: $blog) {\n blog {\n id\n title\n handle\n templateSuffix\n commentPolicy\n }\n userErrors {\n code\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"blog\": {\n \"title\": \"New Blog Title\",\n \"handle\": \"new-blog-title\",\n \"templateSuffix\": \"standard\",\n \"commentPolicy\": \"MODERATED\"\n }\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n mutation CreateBlog($blog: BlogCreateInput!) {\n blogCreate(blog: $blog) {\n blog {\n id\n title\n handle\n templateSuffix\n commentPolicy\n }\n userErrors {\n code\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"blog\": {\n \"title\": \"New Blog Title\",\n \"handle\": \"new-blog-title\",\n \"templateSuffix\": \"standard\",\n \"commentPolicy\": \"MODERATED\"\n }\n}\n\nresponse = client.query(query: query, variables: variables)\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n mutation CreateBlog($blog: BlogCreateInput!) {\n blogCreate(blog: $blog) {\n blog {\n id\n title\n handle\n templateSuffix\n commentPolicy\n }\n userErrors {\n code\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"blog\": {\n \"title\": \"New Blog Title\",\n \"handle\": \"new-blog-title\",\n \"templateSuffix\": \"standard\",\n \"commentPolicy\": \"MODERATED\"\n }\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation CreateBlog($blog: BlogCreateInput!) {\n blogCreate(blog: $blog) {\n blog {\n id\n title\n handle\n templateSuffix\n commentPolicy\n }\n userErrors {\n code\n field\n message\n }\n }\n}" #### Graphql Input { "blog": { "title": "New Blog Title", "handle": "new-blog-title", "templateSuffix": "standard", "commentPolicy": "MODERATED" } } #### Graphql Response { "data": { "blogCreate": { "blog": { "id": "gid://shopify/Blog/1008414248", "title": "New Blog Title", "handle": "new-blog-title", "templateSuffix": "standard", "commentPolicy": "MODERATED" }, "userErrors": [] } } }