{"id":393641,"date":"2023-08-24T12:27:28","date_gmt":"2023-08-24T12:27:28","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=393641"},"modified":"2023-08-24T13:09:00","modified_gmt":"2023-08-24T13:09:00","slug":"how-to-integrate-shopware-6-admin-api","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/","title":{"rendered":"How to Integrate Shopware 6 Admin API"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>Shopware 6 offers a powerful Admin API integration. Manage your store efficiently, retrieve product data, handle orders, and enhance shopping experiences. Our step-by-step guide helps you integrate Shopware 6 Admin API effortlessly, unleashing your e-commerce potential.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before we dive into the integration process, ensure you have the following prerequisites ready:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A running instance of Shopware 6 with API access enabled.<\/li>\n\n\n\n<li>Basic knowledge of RESTful APIs and HTTP methods.<\/li>\n\n\n\n<li>API credentials (API key or OAuth tokens) to authenticate API requests.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Enable API Access in Shopware 6<\/h2>\n\n\n\n<p>To enable API access and integrate Shopware 6 Admin API, you must add the Integration in the backend. Please follow the steps below:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Log in to Shopware Admin:<\/strong> Access your Shopware 6 backend by logging in with your admin credentials.<\/li>\n\n\n\n<li><strong>Navigate to Settings:<\/strong> In the Shopware Admin, go to &#8220;Settings&#8221; from the left-hand sidebar.<\/li>\n\n\n\n<li><strong>Choose System:<\/strong> Under the &#8220;Settings&#8221; section, select &#8220;System&#8221; from the dropdown menu.<\/li>\n\n\n\n<li><strong>Open Integrations:<\/strong> In the &#8220;System&#8221; settings, click on &#8220;Integrations&#8221; to manage integration settings.<\/li>\n\n\n\n<li><strong>Add Integration:<\/strong> On the Integrations page, click on the &#8220;Add integration&#8221; button to create a new integration.<\/li>\n\n\n\n<li><strong>Fill in Integration Details:<\/strong> Provide a name for the integration and any additional information required for identification purposes. make sure you have enabled the administration role.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Screenshot-from-2023-08-23-16-30-25-1200x675.png\" alt=\"How to Integrate Shopware 6 Admin API\" class=\"wp-image-396740\" title=\"\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Screenshot-from-2023-08-23-16-30-25-1200x675.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Screenshot-from-2023-08-23-16-30-25-300x169.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Screenshot-from-2023-08-23-16-30-25-250x141.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Screenshot-from-2023-08-23-16-30-25-768x432.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Screenshot-from-2023-08-23-16-30-25.png 1366w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Understanding the Shopware 6 Admin API Endpoints<\/h2>\n\n\n\n<p>The first step is to know about various Admin API endpoints offered by Shopware 6. These endpoints manage store aspects like products, customers, orders, and categories. To gain a complete understanding of how to integrate Shopware 6 Admin API, refer to the official <a href=\"https:\/\/shopware.stoplight.io\/docs\/admin-api\/3411cc8189190-endpoint-structure\">documentation<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Authentication &amp; Security<\/h2>\n\n\n\n<p>The Shopware 6 Admin API implements <a href=\"https:\/\/oauth.net\/2\/\">OAuth 2.0<\/a>, a widely used standard for user authentication. In this blog, we&#8217;ll delve into the various grant types supported by the Admin API and guide you through the process of obtaining access tokens for secure API interactions.<\/p>\n\n\n\n<p><strong>OAuth 2.0 Grant Types<\/strong><\/p>\n\n\n\n<p>Shopware 6 Admin API supports two major grant types:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Client Credentials Grant:<\/strong> This grant type involves obtaining an <strong>access token<\/strong> that remains valid for 10 minutes. To utilize it, you need to set up an integration and acquire an <strong>Access Key ID<\/strong> and <strong>Secret Access Key<\/strong>.<\/li>\n\n\n\n<li><strong>Resource Owner Password Grant:<\/strong> This grant type requires a username and password for user-based authentication. It yields an <strong>access token<\/strong> with a 10-minute lifespan along with a <strong>refresh token<\/strong> for administrative actions.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Obtaining Access Tokens for Shopware 6 API Integration<\/strong><\/h2>\n\n\n\n<p><strong>Client Credentials Grant:<\/strong> To acquire an access token using this grant type:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">POST \/api\/oauth\/token\n\nContent-Type: application\/json\n\n{\n  &quot;grant_type&quot;: &quot;client_credentials&quot;,\n  &quot;client_id&quot;: &quot;&lt;client-id&gt;&quot;,\n  &quot;client_secret&quot;: &quot;&lt;client-secret&gt;&quot;\n}<\/pre>\n\n\n\n<p>This request will generate an access token response. For a clearer understanding, please refer to the image below in Postman.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"689\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-1-1200x689.png\" alt=\"How to Integrate Shopware 6 Admin API\" class=\"wp-image-396830\" title=\"Client Credentials Grant\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-1-1200x689.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-1-300x172.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-1-250x144.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-1-768x441.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-1.png 1292w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p><strong>Resource Owner Password Grant:<\/strong> To obtain an access token using this grant type:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">POST \/api\/oauth\/token\n\nContent-Type: application\/json\n\n{\n  &quot;client_id&quot;: &quot;administration&quot;,\n  &quot;grant_type&quot;: &quot;password&quot;,\n  &quot;scopes&quot;: &quot;write&quot;,\n  &quot;username&quot;: &quot;&lt;user-username&gt;&quot;,\n  &quot;password&quot;: &quot;&lt;user-password&gt;&quot;\n}<\/pre>\n\n\n\n<p>This request will generate an access token and refresh token response. For a clearer understanding, please refer to the image below in Postman.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"685\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-2-1200x685.png\" alt=\"How to Integrate Shopware 6 Admin API\" class=\"wp-image-396831\" title=\"Resource Owner Password Grant\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-2-1200x685.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-2-300x171.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-2-250x143.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-2-768x439.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/Retrieve-token-2.png 1296w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p><strong><strong>Utilizing Refresh Tokens in Shopware 6 API Requests<\/strong>:<\/strong><br>Available after using the <strong>Resource Owner Password Grant<\/strong>, this allows the exchange of a <strong>refresh token<\/strong> for another short-lived (10 minutes) <strong>access token<\/strong>.<br><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">POST \/api\/oauth\/token\n\nContent-Type: application\/json\n\n{\n  &quot;grant_type&quot;: &quot;refresh_token&quot;,\n  &quot;client_id&quot;: &quot;&lt;client-id&gt;&quot;,\n  &quot;refresh_token&quot;: &quot;&lt;refresh-token&gt;&quot;\n}<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Making API Requests<\/h2>\n\n\n\n<p>Now that we have successfully obtained the <strong>access token<\/strong>, we&#8217;re all set to start making API requests to interact with your store&#8217;s data. The next step involves knowing the specific API endpoints to target. Let&#8217;s kick things off by focusing on the <strong>product entity endpoint<\/strong>. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Retrieving Product Data<\/strong><\/h3>\n\n\n\n<p>One of the primary use cases for integrating the Shopware 6 Admin API is to fetch product lists. You can use the <code><strong>GET \/api\/product<\/strong><\/code> endpoint to retrieve a list of products or fetch individual product details using the <code><strong>GET \/api\/product\/{productId}<\/strong><\/code> endpoint.<\/p>\n\n\n\n<p>To illustrate, we&#8217;ll delve into an example of retrieving a list of products using the <strong>access token<\/strong> we obtained earlier.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">HTTP Method: GET\nEndpoint: {{baseUrl}}\/api\/product\n\nQuery Parameters:\n\n- `limit`: 10 (An integer defining the maximum resources to be returned in a page.)\n- `page`: 1 (The page number you want to retrieve.)\n\nHeaders:\n\n- `Authorization`: Bearer {{accessToken}}<\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>&#8220;Enhance Your Understanding with Visuals: An Image View of the Process&#8221;<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"685\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList-1200x685.png\" alt=\"How to Integrate Shopware 6 Admin API\" class=\"wp-image-396851\" title=\"Image sent with query parameters\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList-1200x685.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList-300x171.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList-250x143.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList-768x439.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList.png 1296w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><figcaption class=\"wp-element-caption\">Image sent with query parameters<\/figcaption><\/figure>\n<\/blockquote>\n\n\n\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList1-1200x685.png\" alt=\"How to Integrate Shopware 6 Admin API\" class=\"wp-image-396852\" style=\"width:820px;height:468px\" width=\"820\" height=\"468\" title=\"Image sent with authorization in the header\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList1-1200x685.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList1-300x171.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList1-250x143.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList1-768x439.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/08\/getProductList1.png 1296w\" sizes=\"(max-width: 820px) 100vw, 820px\" loading=\"lazy\" \/><figcaption class=\"wp-element-caption\">Image sent with authorization in the header.<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Integrate Shopware 6 Admin API to elevate e-commerce management. This guide enables product retrieval, order handling, and more. Optimize store operations for seamless shopping. Get ready to unlock a new realm of efficiency and customer satisfaction. Happy integrating!<br><br>If you need custom\u00a0<a href=\"https:\/\/webkul.com\/shopware-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">Shopware Development Services<\/a>\u00a0then feel free to\u00a0<a href=\"https:\/\/webkul.com\/contacts\" target=\"_blank\" rel=\"noreferrer noopener\">reach us<\/a>\u00a0and also explore our exclusive range of\u00a0<a href=\"https:\/\/store.webkul.com\/Shopware.html\">Shopware Plugins<\/a>.<\/p>\n\n\n\n<p>!!Have a Great Day Ahead!!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Shopware 6 offers a powerful Admin API integration. Manage your store efficiently, retrieve product data, handle orders, and enhance shopping experiences. Our step-by-step guide helps you integrate Shopware 6 Admin API effortlessly, unleashing your e-commerce potential. Prerequisites Before we dive into the integration process, ensure you have the following prerequisites ready: Enable API Access <a href=\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":458,"featured_media":377637,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9568],"tags":[14654,30,14653,14651,14650,14652],"class_list":["post-393641","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-shopware","tag-api-authentication","tag-e-commerce","tag-oauth-2-0","tag-restful-apis","tag-shopware-6","tag-shopware-platform"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Integrate Shopware 6 Admin API - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Discover efficient store management with our Shopware 6 API Integration Guide. Integrate Shopware 6 Admin API for enhanced shopping.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Integrate Shopware 6 Admin API - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Discover efficient store management with our Shopware 6 API Integration Guide. Integrate Shopware 6 Admin API for enhanced shopping.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-24T12:27:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-24T13:09:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"500\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vishal Verma\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vishal Verma\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/\"},\"author\":{\"name\":\"Vishal Verma\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/45eb31829cd032c0b0bc4687f5a66013\"},\"headline\":\"How to Integrate Shopware 6 Admin API\",\"datePublished\":\"2023-08-24T12:27:28+00:00\",\"dateModified\":\"2023-08-24T13:09:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/\"},\"wordCount\":680,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png\",\"keywords\":[\"API Authentication\",\"e-commerce\",\"OAuth 2.0\",\"RESTful APIs\",\"Shopware 6\",\"Shopware Platform\"],\"articleSection\":[\"Shopware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/\",\"name\":\"How to Integrate Shopware 6 Admin API - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png\",\"datePublished\":\"2023-08-24T12:27:28+00:00\",\"dateModified\":\"2023-08-24T13:09:00+00:00\",\"description\":\"Discover efficient store management with our Shopware 6 API Integration Guide. Integrate Shopware 6 Admin API for enhanced shopping.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png\",\"width\":500,\"height\":500,\"caption\":\"Webkul\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Integrate Shopware 6 Admin API\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/45eb31829cd032c0b0bc4687f5a66013\",\"name\":\"Vishal Verma\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4043345377b7d2bfcc7e20a2d3d92c06113513f627020d280dca02b94e7d7f6f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4043345377b7d2bfcc7e20a2d3d92c06113513f627020d280dca02b94e7d7f6f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Vishal Verma\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/vishal-verma676\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Integrate Shopware 6 Admin API - Webkul Blog","description":"Discover efficient store management with our Shopware 6 API Integration Guide. Integrate Shopware 6 Admin API for enhanced shopping.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/","og_locale":"en_US","og_type":"article","og_title":"How to Integrate Shopware 6 Admin API - Webkul Blog","og_description":"Discover efficient store management with our Shopware 6 API Integration Guide. Integrate Shopware 6 Admin API for enhanced shopping.","og_url":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-08-24T12:27:28+00:00","article_modified_time":"2023-08-24T13:09:00+00:00","og_image":[{"width":500,"height":500,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png","type":"image\/png"}],"author":"Vishal Verma","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Vishal Verma","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/"},"author":{"name":"Vishal Verma","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/45eb31829cd032c0b0bc4687f5a66013"},"headline":"How to Integrate Shopware 6 Admin API","datePublished":"2023-08-24T12:27:28+00:00","dateModified":"2023-08-24T13:09:00+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/"},"wordCount":680,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png","keywords":["API Authentication","e-commerce","OAuth 2.0","RESTful APIs","Shopware 6","Shopware Platform"],"articleSection":["Shopware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/","url":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/","name":"How to Integrate Shopware 6 Admin API - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png","datePublished":"2023-08-24T12:27:28+00:00","dateModified":"2023-08-24T13:09:00+00:00","description":"Discover efficient store management with our Shopware 6 API Integration Guide. Integrate Shopware 6 Admin API for enhanced shopping.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png","width":500,"height":500,"caption":"Webkul"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-integrate-shopware-6-admin-api\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Integrate Shopware 6 Admin API"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/45eb31829cd032c0b0bc4687f5a66013","name":"Vishal Verma","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4043345377b7d2bfcc7e20a2d3d92c06113513f627020d280dca02b94e7d7f6f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4043345377b7d2bfcc7e20a2d3d92c06113513f627020d280dca02b94e7d7f6f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Vishal Verma"},"url":"https:\/\/webkul.com\/blog\/author\/vishal-verma676\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/393641","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/458"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=393641"}],"version-history":[{"count":30,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/393641\/revisions"}],"predecessor-version":[{"id":396948,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/393641\/revisions\/396948"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/377637"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=393641"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=393641"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=393641"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}