{"id":132,"date":"2019-01-08T16:12:49","date_gmt":"2019-01-08T15:12:49","guid":{"rendered":"https:\/\/developers.shoptet.cz\/?page_id=132"},"modified":"2026-03-19T16:45:40","modified_gmt":"2026-03-19T15:45:40","slug":"webhooks","status":"publish","type":"page","link":"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/","title":{"rendered":"Webhooks"},"content":{"rendered":"<p>Our webhooks automatically send notifications about important events, reducing the need for frequent API polling.<br \/>\nThis guide explains how to set up, manage, and handle webhooks efficiently to ensure seamless data synchronization.<\/p>\n<p>The list of available events can be found in the <a href=\"https:\/\/api.docs.shoptet.com\/shoptet-api\/openapi\/section\/code-lists\/webhook-event-types\">documentation<\/a>.<\/p>\n<h2 id=\"example-of-webhook-usage\">Example of webhook usage<\/h2>\n<p>First, you need to register a webhook. This is done using the <a href=\"https:\/\/api.docs.shoptet.com\/shoptet-api\/openapi\/webhooks\/registernewwebhook\">POST \/api\/webhooks<\/a> endpoint.<\/p>\n<p>For example, if you want to be notified about <strong>new orders<\/strong>, send:<\/p>\n<pre><code class=\"lang-json\">{\r\n  <span class=\"hljs-attr\">\"data\"<\/span>: [\r\n    {\r\n      <span class=\"hljs-attr\">\"event\"<\/span>: <span class=\"hljs-string\">\"order:create\"<\/span>,\r\n      <span class=\"hljs-attr\">\"url\"<\/span>: <span class=\"hljs-string\">\"https:\/\/myapplication.tld\/new_order.php\"<\/span>\r\n    }\r\n  ]\r\n}\r\n<\/code><\/pre>\n<p>The response to the webhook registration request looks like this:<\/p>\n<pre><code class=\"lang-json\">{\r\n  <span class=\"hljs-attr\">\"data\"<\/span>: {\r\n    <span class=\"hljs-attr\">\"webhooks\"<\/span>: [\r\n      {\r\n        <span class=\"hljs-attr\">\"id\"<\/span>: <span class=\"hljs-number\">123<\/span>,\r\n        <span class=\"hljs-attr\">\"event\"<\/span>: <span class=\"hljs-string\">\"order:create\"<\/span>,\r\n        <span class=\"hljs-attr\">\"url\"<\/span>: <span class=\"hljs-string\">\"https:\/\/myapplication.tld\/new_order.php\"<\/span>,\r\n        <span class=\"hljs-attr\">\"created\"<\/span>: <span class=\"hljs-string\">\"2025-03-02T17:22:02+0200\"<\/span>,\r\n        <span class=\"hljs-attr\">\"updated\"<\/span>: <span class=\"hljs-literal\">null<\/span>\r\n      }\r\n    ]\r\n  },\r\n  <span class=\"hljs-attr\">\"errors\"<\/span>: <span class=\"hljs-literal\">null,\r\n<\/span><code class=\"notranslate\"><code class=\"lang-php\"> <span class=\"hljs-attr\">\"metadata\"<\/span>: {\r\n        <span class=\"hljs-attr\">\"requestId\": \"019c8c34-64f3-7328-af43-bf1e34fa39d7\"<\/span>\r\n  }\r\n<\/code><\/code>} <\/code><\/pre>\n<p>From now on, whenever a new order is created in the e-shop, Shoptet will invoke <code>https:\/\/myapplication.tld\/new_order.php<\/code> via POST with the following content:<\/p>\n<pre><code class=\"lang-json\">{\r\n    <span class=\"hljs-attr\">\"eshopId\"<\/span>: <span class=\"hljs-number\">222651<\/span>,\r\n    <span class=\"hljs-attr\">\"event\"<\/span>: <span class=\"hljs-string\">\"order:create\"<\/span>,\r\n    <span class=\"hljs-attr\">\"eventCreated\"<\/span>: <span class=\"hljs-string\">\"2025-02-08T15:13:39+0100\"<\/span>,\r\n    <span class=\"hljs-attr\">\"eventInstance\"<\/span>: <span class=\"hljs-string\">\"2025000057\"<\/span>\r\n}\r\n<\/code><\/pre>\n<p>The event notification contains the e-shop identification (<code>eshopId<\/code>), event type (<code>order:create<\/code>, meaning order creation), time of creation, and the instance concerned (<code>eventInstance<\/code>) \u2014 in our case, the order with number <code>2018000057<\/code>.<\/p>\n<p>Now, we are likely interested in the details of this order. Based on <code>eshopId<\/code>, we need to find the correct <code>OAuth access token<\/code>. Using the standard method, we will request an <code>access token<\/code> and then retrieve the order using <a href=\"https:\/\/api.docs.shoptet.com\/shoptet-api\/openapi\/orders\/getorderdetail\">GET \/api\/orders\/2018000057<\/a>.<\/p>\n<h2 id=\"webhooks-registration\">Webhooks registration<\/h2>\n<p>The above demonstrated how to register a new webhook. When doing so, <strong>it is not possible to register more than one URL under for a single event<\/strong> (e.g., <code>order:update<\/code>). URLs using ports <code>80<\/code>, <code>8080<\/code>, <code>443<\/code>, and <code>8443<\/code> are permitted.<\/p>\n<p><strong>It is also important to remember that webhooks are registered separately for each installation (i.e., each e-shop and add-on)<\/strong>. Therefore, it is not possible to register a single webhook for an add-on that would send notifications from all e-shops that install it. This gives you the flexibility to register webhooks only for the e-shops where they are needed (for example, when a user disables notifications). Additionally, you can use URLs specific to an e-shop\u2014making it easier to identify the shop\u2014such as <code>https:\/\/call.me\/order\/shopId134<\/code>.<\/p>\n<p>The registration or modification of these \u201cadd-on events\u201d is not subject to any approval process; they take effect immediately. These events are fully controlled by the add-on\u2019s author.<\/p>\n<h2 id=\"further-endpoints-for-the-webhook-content\">Further endpoints for the webhook content<\/h2>\n<ul>\n<li>List of registered webhooks (your addon): <a href=\"https:\/\/api.docs.shoptet.com\/shoptet-api\/openapi\/webhooks\/getoverviewofregisteredwebhooks\">GET \/api\/webhooks<\/a><\/li>\n<li>Change of webhook (called by URL): <a href=\"https:\/\/api.docs.shoptet.com\/shoptet-api\/openapi\/webhooks\/updateexistingwebhook\">PATCH \/api\/webhooks\/{id}<\/a><\/li>\n<li>Deletion of registered webhook: <a href=\"https:\/\/api.docs.shoptet.com\/shoptet-api\/openapi\/webhooks\/deleteregisteredwebhook\">DELETE \/api\/webhooks\/{id}<\/a><\/li>\n<\/ul>\n<p>Registered webhooks are valid for one add-on and one e-shop at a time. It is not possible to register or read webhooks for any other add-on, even if it is from the same developer and for the same e-shop, as they are linked to the specific installation of the add-on.<\/p>\n<h2 id=\"notifications\">Notifications<\/h2>\n<p>A notification sent to a webhook URL must be confirmed by the webhook using HTTP status code 200 within 4 seconds. Otherwise, we will resend the notification after 15 minutes, up to two more times (a maximum of three attempts in total). If the last notification is not confirmed, we will mark it as inactive.<\/p>\n<p>Be careful to split the webhook notification retrieval and further processing. You should end up with 200 Ok once the webhook notification is retrieved properly, otherwise the same notification will be sent again (if e. g. your script faces a problem in later processing and the response finally returns <code>500<\/code>, <code>422<\/code> etc.).<\/p>\n<p>The notifications made on the webhooks are logged, including the number of repetitions, status, timestamps and whether they are active. The author of the addon has the<br \/>\npossibility to read the logs of the implemented requests for webhooks using the endpoint <a href=\"https:\/\/api.docs.shoptet.com\/shoptet-api\/openapi\/webhooks\/getwebhooknotification\">GET \/api\/webhooks\/notifications<\/a>.<\/p>\n<p>Notifications from Shoptet will only be sent from IP addresses <code>185.184.254.0\/24<\/code>.<\/p>\n<p>You should process the notification quickly and execute only the most essential actions. Otherwise, there is a higher risk of an error occurring, which may result in the webhook being triggered again or the response timeout being exceeded (4 seconds). Ideally, you should only store the change identifier (e.g., &#8220;order\/new\/number&#8221;), and any further processing (such as reading details, internal operations, or sending an email) should be handled asynchronously.<\/p>\n<p>Additionally, notifications may not always be sent one by one; they can be delivered in parallel.<\/p>\n<h2 id=\"signing-the-webhooks\">Signing the webhooks<\/h2>\n<p>To verify that the event notification was sent by Shoptet and that the message was not altered in transit, you can use the <code>Shoptet-Webhook-Signature<\/code> header, which contains a hash of the data sent in the notification body.<\/p>\n<p>First, you must call the <a href=\"https:\/\/api.docs.shoptet.com\/shoptet-api\/openapi\/webhooks\/generatewebhooksignaturekey\">POST \/api\/webhooks\/renew-signature-key<\/a> endpoint, which generates the <code>signatureKey<\/code>. Save it.<\/p>\n<p>Shoptet will also store it for the add-on and e-shop. When an event notification is issued, Shoptet calculates the <strong>hash<\/strong> as follows:<\/p>\n<pre><code class=\"lang-php\"><span class=\"hljs-attr\">ShoptetWebhookSignature<\/span> = hash_hmac(<span class=\"hljs-string\">'sha1'<\/span>, <span class=\"hljs-variable\">$messageBody<\/span>, <span class=\"hljs-variable\">$signatureKey<\/span>);\r\n<\/code><\/pre>\n<p>This checksum (hash) is inserted into the <code>Shoptet-Webhook-Signature<\/code> HTTP header before calling the specified URL.<\/p>\n<p>It is recommended to verify the signature as soon as the message is received. This involves taking the body of the received message, generating a custom signature using the <code>signatureKey<\/code> obtained above (with <code>hash_hmac<\/code> or <code>sha1<\/code>), and then comparing it with the <code>Shoptet-Webhook-Signature<\/code> value from the HTTP header.<\/p>\n<p>Example of verification in PHP:<\/p>\n<pre><code class=\"lang-php\">&lt;?php\r\n<span class=\"hljs-built_in\">$webhookBody<\/span> = '{<span class=\"hljs-string\">\"eshopId\"<\/span>:<span class=\"hljs-number\">315185<\/span>,<span class=\"hljs-string\">\"event\"<\/span>:<span class=\"hljs-string\">\"addon:uninstall\"<\/span>,<span class=\"hljs-string\">\"eventCreated\"<\/span>:<span class=\"hljs-string\">\"2019-09-23T22:01:36+0200\"<\/span>,<span class=\"hljs-string\">\"eventInstance\"<\/span>:<span class=\"hljs-string\">\"315185\"<\/span>}'<span class=\"hljs-comment\">;<\/span>\r\n<span class=\"hljs-built_in\">$signatureKey<\/span> = '<span class=\"hljs-number\">61<\/span>d1175f54c47dd67df14c17002a17b2'<span class=\"hljs-comment\">;<\/span>\r\n<span class=\"hljs-built_in\">$calculated<\/span> = hash_hmac('sha1', <span class=\"hljs-built_in\">$webhookBody<\/span>, <span class=\"hljs-built_in\">$signatureKey<\/span>)<span class=\"hljs-comment\">;<\/span>\r\n<span class=\"hljs-built_in\">$expected<\/span> = 'a0e0a3e7689bd4c80e4d6ffcccb05235b864e1d0'<span class=\"hljs-comment\">;<\/span>\r\n\r\nprintf('calculated: <span class=\"hljs-built_in\">%s<\/span> <span class=\"hljs-built_in\">%s<\/span>', <span class=\"hljs-built_in\">$calculated<\/span>, PHP_EOL)<span class=\"hljs-comment\">;<\/span>\r\nprintf('expected: <span class=\"hljs-built_in\">%s<\/span> <span class=\"hljs-built_in\">%s<\/span>', <span class=\"hljs-built_in\">$expected<\/span>, PHP_EOL)<span class=\"hljs-comment\">;<\/span>\r\nprintf('is equal: <span class=\"hljs-built_in\">%s<\/span> <span class=\"hljs-built_in\">%s<\/span>', <span class=\"hljs-built_in\">$calculated<\/span> === <span class=\"hljs-built_in\">$expected<\/span> ? 'yes' : 'no', PHP_EOL)<span class=\"hljs-comment\">;<\/span>\r\n<\/code><\/pre>\n<p>Example of verification in Python:<\/p>\n<pre><code class=\"lang-python\">import base64\r\nimport hmac\r\nimport hashlib\r\n\r\n<span class=\"hljs-built_in\">key<\/span> = '<span class=\"hljs-number\">61<\/span>d1175f54c47dd67df14c17002a17b2'\r\nmessage = '{<span class=\"hljs-string\">\"eshopId\"<\/span>:<span class=\"hljs-number\">315185<\/span>,<span class=\"hljs-string\">\"event\"<\/span>:<span class=\"hljs-string\">\"addon:uninstall\"<\/span>,<span class=\"hljs-string\">\"eventCreated\"<\/span>:<span class=\"hljs-string\">\"2019-09-23T22:01:36+0200\"<\/span>,<span class=\"hljs-string\">\"eventInstance\"<\/span>:<span class=\"hljs-string\">\"315185\"<\/span>}'\r\ndigest = hmac.<span class=\"hljs-keyword\">new<\/span>(<span class=\"hljs-built_in\">key<\/span>.encode('UTF<span class=\"hljs-number\">-8<\/span>'), message.encode('UTF<span class=\"hljs-number\">-8<\/span>'), hashlib.sha1).hexdigest();\r\nexpected = 'a0e0a3e7689bd4c80e4d6ffcccb05235b864e1d0'\r\n\r\n<span class=\"hljs-keyword\">print<\/span> <span class=\"hljs-string\">\"calculated: {}\"<\/span>.<span class=\"hljs-keyword\">format<\/span>(digest)\r\n<span class=\"hljs-keyword\">print<\/span> <span class=\"hljs-string\">\"expected: {}\"<\/span>.<span class=\"hljs-keyword\">format<\/span>(expected)\r\n<span class=\"hljs-keyword\">print<\/span> <span class=\"hljs-string\">\"is equal: {}\"<\/span>.<span class=\"hljs-keyword\">format<\/span>(digest == expected)\r\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Webhooks are calls by the developer of an URL input using the HTTPS protocol, placed in the instant, when the e-shop encounters a specific event, for example the creation of a new order.<\/p>\n","protected":false},"author":26,"featured_media":0,"parent":230,"menu_order":6,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-132","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Webhooks - Shoptet Developers<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Webhooks - Shoptet Developers\" \/>\n<meta property=\"og:description\" content=\"Webhooks are calls by the developer of an URL input using the HTTPS protocol, placed in the instant, when the e-shop encounters a specific event, for example the creation of a new order.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/\" \/>\n<meta property=\"og:site_name\" content=\"Shoptet Developers\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/shoptet\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-19T15:45:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/developers.shoptet.com\/wp-content\/uploads\/2026\/02\/1200x630_en.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@Shoptet\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/\",\"url\":\"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/\",\"name\":\"Webhooks - Shoptet Developers\",\"isPartOf\":{\"@id\":\"https:\/\/developers.shoptet.com\/#website\"},\"datePublished\":\"2019-01-08T15:12:49+00:00\",\"dateModified\":\"2026-03-19T15:45:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/developers.shoptet.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Addons\",\"item\":\"https:\/\/developers.shoptet.com\/addons\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Documentation\",\"item\":\"https:\/\/developers.shoptet.com\/api\/documentation\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Webhooks\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/developers.shoptet.com\/#website\",\"url\":\"https:\/\/developers.shoptet.com\/\",\"name\":\"Shoptet Developers\",\"description\":\"Offer your service to [projectCount] e-shops driven by\u00a0Shoptet\",\"publisher\":{\"@id\":\"https:\/\/developers.shoptet.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/developers.shoptet.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/developers.shoptet.com\/#organization\",\"name\":\"Shoptet s.r.o.\",\"url\":\"https:\/\/developers.shoptet.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/developers.shoptet.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/developers.shoptet.com\/wp-content\/uploads\/2019\/10\/Sni\u0301mek-obrazovky-2019-10-29-v-15.17.38.png\",\"contentUrl\":\"https:\/\/developers.shoptet.com\/wp-content\/uploads\/2019\/10\/Sni\u0301mek-obrazovky-2019-10-29-v-15.17.38.png\",\"width\":486,\"height\":174,\"caption\":\"Shoptet s.r.o.\"},\"image\":{\"@id\":\"https:\/\/developers.shoptet.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/shoptet\",\"https:\/\/x.com\/Shoptet\",\"https:\/\/www.instagram.com\/shoptet.cz\/\",\"https:\/\/cz.linkedin.com\/company\/shoptet\",\"https:\/\/www.youtube.com\/channel\/UCrmFOFsJ7Nd3viUS_Kf5jsg\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Webhooks - Shoptet Developers","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:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/","og_locale":"en_US","og_type":"article","og_title":"Webhooks - Shoptet Developers","og_description":"Webhooks are calls by the developer of an URL input using the HTTPS protocol, placed in the instant, when the e-shop encounters a specific event, for example the creation of a new order.","og_url":"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/","og_site_name":"Shoptet Developers","article_publisher":"https:\/\/www.facebook.com\/shoptet","article_modified_time":"2026-03-19T15:45:40+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/developers.shoptet.com\/wp-content\/uploads\/2026\/02\/1200x630_en.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@Shoptet","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/","url":"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/","name":"Webhooks - Shoptet Developers","isPartOf":{"@id":"https:\/\/developers.shoptet.com\/#website"},"datePublished":"2019-01-08T15:12:49+00:00","dateModified":"2026-03-19T15:45:40+00:00","breadcrumb":{"@id":"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/developers.shoptet.com\/api\/documentation\/webhooks\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/developers.shoptet.com\/"},{"@type":"ListItem","position":2,"name":"Addons","item":"https:\/\/developers.shoptet.com\/addons\/"},{"@type":"ListItem","position":3,"name":"Documentation","item":"https:\/\/developers.shoptet.com\/api\/documentation\/"},{"@type":"ListItem","position":4,"name":"Webhooks"}]},{"@type":"WebSite","@id":"https:\/\/developers.shoptet.com\/#website","url":"https:\/\/developers.shoptet.com\/","name":"Shoptet Developers","description":"Offer your service to [projectCount] e-shops driven by\u00a0Shoptet","publisher":{"@id":"https:\/\/developers.shoptet.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/developers.shoptet.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/developers.shoptet.com\/#organization","name":"Shoptet s.r.o.","url":"https:\/\/developers.shoptet.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/developers.shoptet.com\/#\/schema\/logo\/image\/","url":"https:\/\/developers.shoptet.com\/wp-content\/uploads\/2019\/10\/Sni\u0301mek-obrazovky-2019-10-29-v-15.17.38.png","contentUrl":"https:\/\/developers.shoptet.com\/wp-content\/uploads\/2019\/10\/Sni\u0301mek-obrazovky-2019-10-29-v-15.17.38.png","width":486,"height":174,"caption":"Shoptet s.r.o."},"image":{"@id":"https:\/\/developers.shoptet.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/shoptet","https:\/\/x.com\/Shoptet","https:\/\/www.instagram.com\/shoptet.cz\/","https:\/\/cz.linkedin.com\/company\/shoptet","https:\/\/www.youtube.com\/channel\/UCrmFOFsJ7Nd3viUS_Kf5jsg"]}]}},"_links":{"self":[{"href":"https:\/\/developers.shoptet.com\/wp-json\/wp\/v2\/pages\/132","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/developers.shoptet.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/developers.shoptet.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/developers.shoptet.com\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/developers.shoptet.com\/wp-json\/wp\/v2\/comments?post=132"}],"version-history":[{"count":34,"href":"https:\/\/developers.shoptet.com\/wp-json\/wp\/v2\/pages\/132\/revisions"}],"predecessor-version":[{"id":4851,"href":"https:\/\/developers.shoptet.com\/wp-json\/wp\/v2\/pages\/132\/revisions\/4851"}],"up":[{"embeddable":true,"href":"https:\/\/developers.shoptet.com\/wp-json\/wp\/v2\/pages\/230"}],"wp:attachment":[{"href":"https:\/\/developers.shoptet.com\/wp-json\/wp\/v2\/media?parent=132"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}