{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":["admonition"]},"type":"markdown"},"seo":{"title":"Subscription model","meta":[{"name":"robots","content":"noindex"}],"llmstxt":{"hide":false,"sections":[{"title":"Table of contents","includeFiles":["**/*"],"excludeFiles":[]}],"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"subscription-model","__idx":0},"children":["Subscription model"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This page explains how webhook subscriptions are structured, how you can control which events to receive, and how delivery to your endpoints works."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Each subscription is created with the ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"/docs/openapi/webhooksubscriptionapi/webhook-subscription/createwebhooksubscription"},"children":["Create Webhook Subscription"]}," API."," ","A subscription is owned by a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["subscriberId"]}," (the company that manages it), delivers to a single HTTPS ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["url"]},", lists the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["eventTypes"]}," you want to receive, and optionally narrows the source companies whose events you receive through an ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["eventSource"]}," object. When ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["eventSource"]}," is omitted, it defaults to the subscriber's own company (",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["COMPANY = subscriberId"]},")."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["A sample create subscription request looks like this:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","data-title":"POST /v3/webhooks/subscriptions","header":{"title":"POST /v3/webhooks/subscriptions","controls":{"copy":{}}},"source":"{\n  \"subscriberId\": \"company1-id\",\n  \"name\": \"spotnana_us\",\n  \"url\": \"https://partner.com/api/webhooks/pnr\",\n  \"eventTypes\": [\"PNR_V3\"],\n  \"eventSource\": {\n    \"scopes\": [\n      { \"predicates\": [ { \"type\": \"COMPANY\", \"comparator\": \"IN\", \"values\": [\"company1-id\"] } ] }\n    ]\n  },\n  \"customHeaders\": { \"X-Custom-Header\": \"my-value\" }\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The response returns the subscription ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["id"]}," and an ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["hmacSigningSecret"]}," that is shown only once."," ","Store this ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["hmacSigningSecret"]}," securely (see ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"/docs/webhooks/webhook-auth#hmac-signature-verification"},"children":["Authentication"]}," for more information)."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"supported-subscription-models","__idx":1},"children":["Supported subscription models"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Spotnana supports two ways to configure webhook subscriptions depending on how your system is set up."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"option-a-single-tmc-level-webhook-recommended","__idx":2},"children":["Option A: Single TMC-level webhook (recommended)"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["One webhook subscription that covers all of your customers."," ","Spotnana delivers all events across all organizations to a single endpoint,"," ","and you route them internally based on the organization identifier (i.e., an ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["organizationId"]},") included in every payload."]},{"$$mdtype":"Tag","name":"Mermaid","attributes":{"data-language":"mermaid","diagramSource":"flowchart LR\n   S[Spotnana] --> E[Single TMC partner's\n   endpoint]\n   E --> R{Route by organization ID}\n   R --> O1[Org A]\n   R --> O2[Org B]\n   R --> O3[Org C]\n","diagramHtml":"<div class=\"mermaid\" data-processed=\"true\"><svg id=\"mermaid-1772619967156\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" class=\"flowchart\" style=\"max-width: 850.3125px;\" viewBox=\"0 0 850.3125 278\" role=\"graphics-document document\" aria-roledescription=\"flowchart-v2\"><style>#mermaid-1772619967156{font-family:\"trebuchet ms\",verdana,arial,sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#mermaid-1772619967156 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#mermaid-1772619967156 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#mermaid-1772619967156 .error-icon{fill:#552222;}#mermaid-1772619967156 .error-text{fill:#552222;stroke:#552222;}#mermaid-1772619967156 .edge-thickness-normal{stroke-width:1px;}#mermaid-1772619967156 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-1772619967156 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-1772619967156 .edge-thickness-invisible{stroke-width:0;fill:none;}#mermaid-1772619967156 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-1772619967156 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-1772619967156 .marker{fill:#333333;stroke:#333333;}#mermaid-1772619967156 .marker.cross{stroke:#333333;}#mermaid-1772619967156 svg{font-family:\"trebuchet ms\",verdana,arial,sans-serif;font-size:16px;}#mermaid-1772619967156 p{margin:0;}#mermaid-1772619967156 .label{font-family:\"trebuchet ms\",verdana,arial,sans-serif;color:#333;}#mermaid-1772619967156 .cluster-label text{fill:#333;}#mermaid-1772619967156 .cluster-label span{color:#333;}#mermaid-1772619967156 .cluster-label span p{background-color:transparent;}#mermaid-1772619967156 .label text,#mermaid-1772619967156 span{fill:#333;color:#333;}#mermaid-1772619967156 .node rect,#mermaid-1772619967156 .node circle,#mermaid-1772619967156 .node ellipse,#mermaid-1772619967156 .node polygon,#mermaid-1772619967156 .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#mermaid-1772619967156 .rough-node .label text,#mermaid-1772619967156 .node .label text,#mermaid-1772619967156 .image-shape .label,#mermaid-1772619967156 .icon-shape .label{text-anchor:middle;}#mermaid-1772619967156 .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#mermaid-1772619967156 .rough-node .label,#mermaid-1772619967156 .node .label,#mermaid-1772619967156 .image-shape .label,#mermaid-1772619967156 .icon-shape .label{text-align:center;}#mermaid-1772619967156 .node.clickable{cursor:pointer;}#mermaid-1772619967156 .root .anchor path{fill:#333333!important;stroke-width:0;stroke:#333333;}#mermaid-1772619967156 .arrowheadPath{fill:#333333;}#mermaid-1772619967156 .edgePath .path{stroke:#333333;stroke-width:2.0px;}#mermaid-1772619967156 .flowchart-link{stroke:#333333;fill:none;}#mermaid-1772619967156 .edgeLabel{background-color:rgba(232,232,232, 0.8);text-align:center;}#mermaid-1772619967156 .edgeLabel p{background-color:rgba(232,232,232, 0.8);}#mermaid-1772619967156 .edgeLabel rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#mermaid-1772619967156 .labelBkg{background-color:rgba(232, 232, 232, 0.5);}#mermaid-1772619967156 .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#mermaid-1772619967156 .cluster text{fill:#333;}#mermaid-1772619967156 .cluster span{color:#333;}#mermaid-1772619967156 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:\"trebuchet ms\",verdana,arial,sans-serif;font-size:12px;background:hsl(80, 100%, 96.2745098039%);border:1px solid #aaaa33;border-radius:2px;pointer-events:none;z-index:100;}#mermaid-1772619967156 .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#333;}#mermaid-1772619967156 rect.text{fill:none;stroke-width:0;}#mermaid-1772619967156 .icon-shape,#mermaid-1772619967156 .image-shape{background-color:rgba(232,232,232, 0.8);text-align:center;}#mermaid-1772619967156 .icon-shape p,#mermaid-1772619967156 .image-shape p{background-color:rgba(232,232,232, 0.8);padding:2px;}#mermaid-1772619967156 .icon-shape rect,#mermaid-1772619967156 .image-shape rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#mermaid-1772619967156 .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#mermaid-1772619967156 .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#mermaid-1772619967156 :root{--mermaid-font-family:\"trebuchet ms\",verdana,arial,sans-serif;}</style><g><marker id=\"mermaid-1772619967156_flowchart-v2-pointEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 0 L 10 5 L 0 10 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"mermaid-1772619967156_flowchart-v2-pointStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"4.5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 5 L 10 10 L 10 0 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"mermaid-1772619967156_flowchart-v2-circleEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"11\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"mermaid-1772619967156_flowchart-v2-circleStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"-1\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"mermaid-1772619967156_flowchart-v2-crossEnd\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"12\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"mermaid-1772619967156_flowchart-v2-crossStart\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"-1\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><g class=\"root\"><g class=\"clusters\"></g><g class=\"edgePaths\"><path d=\"M139.297,139L143.464,139C147.63,139,155.964,139,163.63,139C171.297,139,178.297,139,181.797,139L185.297,139\" id=\"L_S_E_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_S_E_0\" data-points=\"W3sieCI6MTM5LjI5Njg3NSwieSI6MTM5fSx7IngiOjE2NC4yOTY4NzUsInkiOjEzOX0seyJ4IjoxODkuMjk2ODc1LCJ5IjoxMzl9XQ==\" marker-end=\"url(#mermaid-1772619967156_flowchart-v2-pointEnd)\"></path><path d=\"M402.625,139L406.792,139C410.958,139,419.292,139,426.958,139C434.625,139,441.625,139,445.125,139L448.625,139\" id=\"L_E_R_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_E_R_0\" data-points=\"W3sieCI6NDAyLjYyNSwieSI6MTM5fSx7IngiOjQyNy42MjUsInkiOjEzOX0seyJ4Ijo0NTIuNjI1LCJ5IjoxMzl9XQ==\" marker-end=\"url(#mermaid-1772619967156_flowchart-v2-pointEnd)\"></path><path d=\"M640.29,89.15L652.765,80.125C665.24,71.1,690.191,53.05,706.184,44.025C722.177,35,729.214,35,732.732,35L736.25,35\" id=\"L_R_O1_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_R_O1_0\" data-points=\"W3sieCI6NjQwLjI5MDI3OTcxNTczMTcsInkiOjg5LjE0OTY1NDcxNTczMTcxfSx7IngiOjcxNS4xNDA2MjUsInkiOjM1fSx7IngiOjc0MC4yNSwieSI6MzV9XQ==\" marker-end=\"url(#mermaid-1772619967156_flowchart-v2-pointEnd)\"></path><path d=\"M690.141,139L694.307,139C698.474,139,706.807,139,714.474,139C722.141,139,729.141,139,732.641,139L736.141,139\" id=\"L_R_O2_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_R_O2_0\" data-points=\"W3sieCI6NjkwLjE0MDYyNSwieSI6MTM5fSx7IngiOjcxNS4xNDA2MjUsInkiOjEzOX0seyJ4Ijo3NDAuMTQwNjI1LCJ5IjoxMzl9XQ==\" marker-end=\"url(#mermaid-1772619967156_flowchart-v2-pointEnd)\"></path><path d=\"M640.29,188.85L652.765,197.875C665.24,206.9,690.191,224.95,706.188,233.975C722.185,243,729.229,243,732.751,243L736.273,243\" id=\"L_R_O3_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_R_O3_0\" data-points=\"W3sieCI6NjQwLjI5MDI3OTcxNTczMTcsInkiOjE4OC44NTAzNDUyODQyNjgzfSx7IngiOjcxNS4xNDA2MjUsInkiOjI0M30seyJ4Ijo3NDAuMjczNDM3NSwieSI6MjQzfV0=\" marker-end=\"url(#mermaid-1772619967156_flowchart-v2-pointEnd)\"></path></g><g class=\"edgeLabels\"><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_S_E_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_E_R_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_R_O1_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_R_O2_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_R_O3_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g></g><g class=\"nodes\"><g class=\"node default\" id=\"flowchart-S-0\" transform=\"translate(73.6484375, 139)\"><rect class=\"basic label-container\" style=\"\" x=\"-65.6484375\" y=\"-27\" width=\"131.296875\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-35.6484375, -12)\"><rect></rect><foreignObject width=\"71.296875\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Spotnana</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-E-1\" transform=\"translate(295.9609375, 139)\"><rect class=\"basic label-container\" style=\"\" x=\"-106.6640625\" y=\"-39\" width=\"213.328125\" height=\"78\"></rect><g class=\"label\" style=\"\" transform=\"translate(-76.6640625, -24)\"><rect></rect><foreignObject width=\"153.328125\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Single TMC partner's<br>endpoint</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-R-3\" transform=\"translate(571.3828125, 139)\"><polygon points=\"118.7578125,0 237.515625,-118.7578125 118.7578125,-237.515625 0,-118.7578125\" class=\"label-container\" transform=\"translate(-118.2578125, 118.7578125)\"></polygon><g class=\"label\" style=\"\" transform=\"translate(-91.7578125, -12)\"><rect></rect><foreignObject width=\"183.515625\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Route by organization ID</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-O1-5\" transform=\"translate(791.2265625, 35)\"><rect class=\"basic label-container\" style=\"\" x=\"-50.9765625\" y=\"-27\" width=\"101.953125\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-20.9765625, -12)\"><rect></rect><foreignObject width=\"41.953125\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Org A</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-O2-7\" transform=\"translate(791.2265625, 139)\"><rect class=\"basic label-container\" style=\"\" x=\"-51.0859375\" y=\"-27\" width=\"102.171875\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-21.0859375, -12)\"><rect></rect><foreignObject width=\"42.171875\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Org B</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-O3-9\" transform=\"translate(791.2265625, 243)\"><rect class=\"basic label-container\" style=\"\" x=\"-50.953125\" y=\"-27\" width=\"101.90625\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-20.953125, -12)\"><rect></rect><foreignObject width=\"41.90625\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Org C</p></span></div></foreignObject></g></g></g></g></g></svg></div>"},"children":["flowchart LR\n   S[Spotnana] --> E[Single TMC partner's\n   endpoint]\n   E --> R{Route by organization ID}\n   R --> O1[Org A]\n   R --> O2[Org B]\n   R --> O3[Org C]\n"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},"This is the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["recommended"]}," model for partners integrating across multiple customers as it"," ","reduces the overhead of managing multiple subscriptions."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["For this model, set ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["subscriberId"]}," to your TMC and scope the subscription to every company that TMC manages with a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["CONTRACTING_TMC"]}," predicate. Companies you onboard later are covered automatically, with no subscription changes:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","data-title":"POST /v3/webhooks/subscriptions","header":{"title":"POST /v3/webhooks/subscriptions","controls":{"copy":{}}},"source":"\"eventSource\": {\n  \"scopes\": [\n    {\n      \"predicates\": [\n        {\n          \"type\": \"CONTRACTING_TMC\",\n          \"comparator\": \"IN\",\n          \"values\": [\n            \"your-tmc-id\"\n          ]\n        }\n      ]\n    }\n  ]\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["To scope a single TMC-level subscription to a ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["specific subset"]}," of the companies you manage (rather than all of them), use a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["COMPANY"]}," predicate that lists those company IDs."," ","The ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["values"]}," are matched with ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["IN"]}," logic, so the subscription receives events from any company in the list:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","data-title":"POST /v3/webhooks/subscriptions","header":{"title":"POST /v3/webhooks/subscriptions","controls":{"copy":{}}},"source":"\"eventSource\": {\n  \"scopes\": [\n    {\n      \"predicates\": [\n        {\n          \"type\": \"COMPANY\",\n          \"comparator\": \"IN\",\n          \"values\": [\n            \"company1-id\",\n            \"company2-id\",\n            \"company3-id\"\n          ]\n        }\n      ]\n    }\n  ]\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"option-b-organization-specific-webhooks","__idx":3},"children":["Option B: Organization specific webhooks"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Each customer organization has its own dedicated webhook subscription with a separate endpoint URL and authentication credentials."," ","Spotnana delivers events for that organization exclusively to the configured endpoint."]},{"$$mdtype":"Tag","name":"Mermaid","attributes":{"data-language":"mermaid","diagramSource":"flowchart LR\n    S([Spotnana]) --> E1[[Endpoint A]]\n    S --> E2[[Endpoint B]]\n    S --> E3[[Endpoint C]]\n    E1 --> O1[(Org A)]\n    E2 --> O2[(Org B)]\n    E3 --> O3[(Org C)]\n","diagramHtml":"<div class=\"mermaid\" data-processed=\"true\"><svg id=\"mermaid-1772619707580\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" class=\"flowchart\" style=\"max-width: 382.15185546875px;\" viewBox=\"0 0.0000019073486328125 382.15185546875 303.47039794921875\" role=\"graphics-document document\" aria-roledescription=\"flowchart-v2\"><style>#mermaid-1772619707580{font-family:\"trebuchet ms\",verdana,arial,sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#mermaid-1772619707580 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#mermaid-1772619707580 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#mermaid-1772619707580 .error-icon{fill:#552222;}#mermaid-1772619707580 .error-text{fill:#552222;stroke:#552222;}#mermaid-1772619707580 .edge-thickness-normal{stroke-width:1px;}#mermaid-1772619707580 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-1772619707580 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-1772619707580 .edge-thickness-invisible{stroke-width:0;fill:none;}#mermaid-1772619707580 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-1772619707580 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-1772619707580 .marker{fill:#333333;stroke:#333333;}#mermaid-1772619707580 .marker.cross{stroke:#333333;}#mermaid-1772619707580 svg{font-family:\"trebuchet ms\",verdana,arial,sans-serif;font-size:16px;}#mermaid-1772619707580 p{margin:0;}#mermaid-1772619707580 .label{font-family:\"trebuchet ms\",verdana,arial,sans-serif;color:#333;}#mermaid-1772619707580 .cluster-label text{fill:#333;}#mermaid-1772619707580 .cluster-label span{color:#333;}#mermaid-1772619707580 .cluster-label span p{background-color:transparent;}#mermaid-1772619707580 .label text,#mermaid-1772619707580 span{fill:#333;color:#333;}#mermaid-1772619707580 .node rect,#mermaid-1772619707580 .node circle,#mermaid-1772619707580 .node ellipse,#mermaid-1772619707580 .node polygon,#mermaid-1772619707580 .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#mermaid-1772619707580 .rough-node .label text,#mermaid-1772619707580 .node .label text,#mermaid-1772619707580 .image-shape .label,#mermaid-1772619707580 .icon-shape .label{text-anchor:middle;}#mermaid-1772619707580 .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#mermaid-1772619707580 .rough-node .label,#mermaid-1772619707580 .node .label,#mermaid-1772619707580 .image-shape .label,#mermaid-1772619707580 .icon-shape .label{text-align:center;}#mermaid-1772619707580 .node.clickable{cursor:pointer;}#mermaid-1772619707580 .root .anchor path{fill:#333333!important;stroke-width:0;stroke:#333333;}#mermaid-1772619707580 .arrowheadPath{fill:#333333;}#mermaid-1772619707580 .edgePath .path{stroke:#333333;stroke-width:2.0px;}#mermaid-1772619707580 .flowchart-link{stroke:#333333;fill:none;}#mermaid-1772619707580 .edgeLabel{background-color:rgba(232,232,232, 0.8);text-align:center;}#mermaid-1772619707580 .edgeLabel p{background-color:rgba(232,232,232, 0.8);}#mermaid-1772619707580 .edgeLabel rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#mermaid-1772619707580 .labelBkg{background-color:rgba(232, 232, 232, 0.5);}#mermaid-1772619707580 .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#mermaid-1772619707580 .cluster text{fill:#333;}#mermaid-1772619707580 .cluster span{color:#333;}#mermaid-1772619707580 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:\"trebuchet ms\",verdana,arial,sans-serif;font-size:12px;background:hsl(80, 100%, 96.2745098039%);border:1px solid #aaaa33;border-radius:2px;pointer-events:none;z-index:100;}#mermaid-1772619707580 .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#333;}#mermaid-1772619707580 rect.text{fill:none;stroke-width:0;}#mermaid-1772619707580 .icon-shape,#mermaid-1772619707580 .image-shape{background-color:rgba(232,232,232, 0.8);text-align:center;}#mermaid-1772619707580 .icon-shape p,#mermaid-1772619707580 .image-shape p{background-color:rgba(232,232,232, 0.8);padding:2px;}#mermaid-1772619707580 .icon-shape rect,#mermaid-1772619707580 .image-shape rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#mermaid-1772619707580 .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#mermaid-1772619707580 .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#mermaid-1772619707580 :root{--mermaid-font-family:\"trebuchet ms\",verdana,arial,sans-serif;}</style><g><marker id=\"mermaid-1772619707580_flowchart-v2-pointEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 0 L 10 5 L 0 10 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"mermaid-1772619707580_flowchart-v2-pointStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"4.5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 5 L 10 10 L 10 0 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"mermaid-1772619707580_flowchart-v2-circleEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"11\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"mermaid-1772619707580_flowchart-v2-circleStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"-1\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"mermaid-1772619707580_flowchart-v2-crossEnd\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"12\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"mermaid-1772619707580_flowchart-v2-crossStart\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"-1\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><g class=\"root\"><g class=\"clusters\"></g><g class=\"edgePaths\"><path d=\"M69.169,132.742L79.145,117.158C89.121,101.574,109.074,70.406,122.652,54.892C136.23,39.379,143.434,39.519,147.035,39.589L150.637,39.66\" id=\"L_S_E1_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_S_E1_0\" data-points=\"W3sieCI6NjkuMTY4NjMzMDkyMjc0NTUsInkiOjEzMi43NDE4NDAzNjI1NDg4fSx7IngiOjEyOS4wMjY4NDAyMDk5NjA5NCwieSI6MzkuMjM3ODcxMTcwMDQzOTQ1fSx7IngiOjE1NC42MzYyMTUyMDk5NjA5NCwieSI6MzkuNzM3ODcxMTcwMDQzOTQ1fV0=\" marker-end=\"url(#mermaid-1772619707580_flowchart-v2-pointEnd)\"></path><path d=\"M104.527,152.242L108.61,152.159C112.694,152.075,120.86,151.909,128.527,151.895C136.194,151.882,143.361,152.023,146.944,152.093L150.528,152.163\" id=\"L_S_E2_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_S_E2_0\" data-points=\"W3sieCI6MTA0LjUyNjgzNzQzMTgyNTU2LCJ5IjoxNTIuMjQxODQwMzYyNTQ4ODN9LHsieCI6MTI5LjAyNjg0MDIwOTk2MDk0LCJ5IjoxNTEuNzQxODQwMzYyNTQ4ODN9LHsieCI6MTU0LjUyNjg0MDIwOTk2MDk0LCJ5IjoxNTIuMjQxODQwMzYyNTQ4ODN9XQ==\" marker-end=\"url(#mermaid-1772619707580_flowchart-v2-pointEnd)\"></path><path d=\"M69.169,171.742L79.146,187.158C89.122,202.574,109.074,233.407,122.655,248.893C136.235,264.38,143.444,264.52,147.048,264.591L150.653,264.661\" id=\"L_S_E3_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_S_E3_0\" data-points=\"W3sieCI6NjkuMTY5MzgwMjA0OTQ0MTksInkiOjE3MS43NDE4NDAzNjI1NDg4M30seyJ4IjoxMjkuMDI2ODQwMjA5OTYwOTQsInkiOjI2NC4yMzkxNjgxNjcxMTQyNn0seyJ4IjoxNTQuNjUxODQwMjA5OTYwOTQsInkiOjI2NC43MzkxNjgxNjcxMTQyNn1d\" marker-end=\"url(#mermaid-1772619707580_flowchart-v2-pointEnd)\"></path><path d=\"M267.371,39.738L271.472,39.655C275.574,39.571,283.777,39.405,291.397,39.321C299.016,39.238,306.053,39.238,309.571,39.238L313.089,39.238\" id=\"L_E1_O1_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_E1_O1_0\" data-points=\"W3sieCI6MjY3LjM3MDU5MDIwOTk2MDk0LCJ5IjozOS43Mzc4NzExNzAwNDM5NDV9LHsieCI6MjkxLjk3OTk2NTIwOTk2MDk0LCJ5IjozOS4yMzc4NzExNzAwNDM5NDV9LHsieCI6MzE3LjA4OTM0MDIwOTk2MDk0LCJ5IjozOS4yMzc4NzExNzAwNDM5NDV9XQ==\" marker-end=\"url(#mermaid-1772619707580_flowchart-v2-pointEnd)\"></path><path d=\"M267.48,152.242L271.563,152.159C275.647,152.075,283.813,151.909,291.397,151.825C298.98,151.742,305.98,151.742,309.48,151.742L312.98,151.742\" id=\"L_E2_O2_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_E2_O2_0\" data-points=\"W3sieCI6MjY3LjQ3OTk2NTIwOTk2MDk0LCJ5IjoxNTIuMjQxODQwMzYyNTQ4ODN9LHsieCI6MjkxLjk3OTk2NTIwOTk2MDk0LCJ5IjoxNTEuNzQxODQwMzYyNTQ4ODN9LHsieCI6MzE2Ljk3OTk2NTIwOTk2MDk0LCJ5IjoxNTEuNzQxODQwMzYyNTQ4ODN9XQ==\" marker-end=\"url(#mermaid-1772619707580_flowchart-v2-pointEnd)\"></path><path d=\"M267.355,264.739L271.459,264.656C275.563,264.573,283.772,264.406,291.398,264.323C299.024,264.239,306.069,264.239,309.591,264.239L313.113,264.239\" id=\"L_E3_O3_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_E3_O3_0\" data-points=\"W3sieCI6MjY3LjM1NDk2NTIwOTk2MDk0LCJ5IjoyNjQuNzM5MTY4MTY3MTE0MjZ9LHsieCI6MjkxLjk3OTk2NTIwOTk2MDk0LCJ5IjoyNjQuMjM5MTY4MTY3MTE0MjZ9LHsieCI6MzE3LjExMjc3NzcwOTk2MDk0LCJ5IjoyNjQuMjM5MTY4MTY3MTE0MjZ9XQ==\" marker-end=\"url(#mermaid-1772619707580_flowchart-v2-pointEnd)\"></path></g><g class=\"edgeLabels\"><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_S_E1_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_S_E2_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_S_E3_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_E1_O1_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_E2_O2_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_E3_O3_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g></g><g class=\"nodes\"><g class=\"node default\" id=\"flowchart-S-0\" transform=\"translate(56.01342010498047, 151.74184036254883)\"><g class=\"basic label-container outer-path\"><path d=\"M-28.5234375 -19.5 C-12.584630969050073 -19.5, 3.3541755618998543 -19.5, 28.5234375 -19.5 C28.5234375 -19.5, 28.5234375 -19.5, 28.5234375 -19.5 C28.845471747245707 -19.489672988492465, 29.167505994491417 -19.479345976984934, 29.7728067896239 -19.45993515863156 C30.101050894811582 -19.428269844575397, 30.429294999999264 -19.396604530519234, 31.017042152847864 -19.3399052695533 C31.402776798922794 -19.277542683392763, 31.78851144499772 -19.215180097232228, 32.25103075967676 -19.140403561325776 C32.60258080313329 -19.06016455798525, 32.95413084658983 -18.97992555464472, 33.46970188623539 -18.862249829261074 C33.89684288628673 -18.7354766225547, 34.32398388633806 -18.60870341584833, 34.668047751460605 -18.50658706670804 C34.938650803625976 -18.40700264208399, 35.20925385579134 -18.307418217459944, 35.8411440951478 -18.074876768247425 C36.114922445422806 -17.953683213926887, 36.38870079569782 -17.83248965960635, 36.98417041279238 -17.568892924097174 C37.332898120406526 -17.38696190240563, 37.68162582802067 -17.20503088071409, 38.09242976407678 -16.990714730406097 C38.37459852152649 -16.819662371432408, 38.6567672789762 -16.648610012458718, 39.1613680736057 -16.342718045390892 C39.43317744237609 -16.1531155961746, 39.70498681114648 -15.963513146958308, 40.18659284457871 -15.627565626425154 C40.56607450040003 -15.324939104338624, 40.945556156221336 -15.022312582252095, 41.163891208501866 -14.848196188198123 C41.350687654711656 -14.678552598113528, 41.537484100921446 -14.508909008028931, 42.08924723676799 -14.007812326905688 C42.280363849185875 -13.81046873361853, 42.471480461603754 -13.613125140331373, 42.95885844296865 -13.10986736009568 C43.14001558217325 -12.89706987625272, 43.32117272137785 -12.684272392409762, 43.76915140812658 -12.158051136245305 C43.961865006999105 -11.899832470326151, 44.154578605871635 -11.641613804406996, 44.516796464640635 -11.156274872382312 C44.739467474266895 -10.81419240605813, 44.962138483893156 -10.472109939733945, 45.19872137860425 -10.108655082055241 C45.417443808873564 -9.72029125906436, 45.636166239142874 -9.33192743607348, 45.812123974273504 -9.019496659696287 C45.94322675910131 -8.74725892185113, 46.07432954392912 -8.475021184005971, 46.35448364880834 -7.893275190886684 C46.51132478365716 -7.505874555493041, 46.668165918505984 -7.118473920099397, 46.823571729970325 -6.734618561215508 C46.934929359586064 -6.399227123241709, 47.0462869892018 -6.06383568526791, 47.21746063421488 -5.548287939305138 C47.301814246638536 -5.2266110560468455, 47.3861678590622 -4.904934172788553, 47.53453178754556 -4.339158212148133 C47.596961137987975 -4.018596692074231, 47.65939048843038 -3.6980351720003295, 47.773482276581774 -3.1121979531509023 C47.82096714983613 -2.7439146531389658, 47.868452023090484 -2.3756313531270288, 47.93333020250937 -1.872449005199798 C47.94985540022069 -1.6150557119464293, 47.966380597932016 -1.3576624186930604, 48.01341871591342 -0.6250057626472757 C48.01341871591342 -0.36420267133768974, 48.01341871591342 -0.10339958002810379, 48.01341871591342 0.625005762647271 C47.98930862593329 1.0005398754021015, 47.965198535953164 1.3760739881569322, 47.93333020250937 1.8724490051997846 C47.8952762917867 2.167587622170169, 47.85722238106403 2.4627262391405536, 47.773482276581774 3.1121979531508885 C47.683276082537866 3.575387694480505, 47.59306988849396 4.038577435810121, 47.53453178754556 4.339158212148129 C47.409019793919455 4.817789841086622, 47.28350780029334 5.296421470025115, 47.21746063421489 5.548287939305125 C47.13529054054882 5.7957711694008065, 47.053120446882765 6.043254399496487, 46.823571729970325 6.734618561215495 C46.714183168340234 7.0048104233257895, 46.604794606710136 7.275002285436085, 46.35448364880834 7.893275190886679 C46.22710270132126 8.157784453859263, 46.099721753834174 8.422293716831847, 45.812123974273504 9.019496659696284 C45.678694712870666 9.256413824494846, 45.54526545146782 9.493330989293408, 45.19872137860425 10.108655082055236 C45.02904095281401 10.36932978164315, 44.85936052702377 10.630004481231065, 44.51679646464064 11.156274872382301 C44.342728697312744 11.38950982270185, 44.16866092998485 11.622744773021399, 43.76915140812658 12.158051136245302 C43.57795678962228 12.382639214422445, 43.38676217111798 12.60722729259959, 42.95885844296866 13.10986736009567 C42.686906401115934 13.390680170986483, 42.41495435926321 13.671492981877297, 42.08924723676799 14.007812326905684 C41.869213467090376 14.20764117475237, 41.64917969741276 14.407470022599055, 41.16389120850189 14.848196188198111 C40.783787339233974 15.151318908950508, 40.40368346996606 15.454441629702904, 40.18659284457871 15.627565626425152 C39.918155019084125 15.814816233004, 39.64971719358954 16.00206683958285, 39.16136807360571 16.34271804539089 C38.93209981997952 16.481701808068895, 38.70283156635333 16.620685570746897, 38.09242976407678 16.990714730406093 C37.696021261738224 17.197520792164354, 37.29961275939967 17.404326853922615, 36.98417041279239 17.56889292409717 C36.729799141483774 17.681495540249827, 36.47542787017516 17.794098156402487, 35.841144095147804 18.07487676824742 C35.47825149926845 18.208424598073403, 35.11535890338911 18.34197242789939, 34.66804775146062 18.506587066708033 C34.26214735175358 18.627056174726405, 33.85624695204655 18.747525282744782, 33.46970188623541 18.86224982926107 C33.20912831024435 18.921724047579538, 32.948554734253285 18.981198265898, 32.251030759676766 19.140403561325773 C31.796719017113997 19.213853160623138, 31.342407274551228 19.287302759920504, 31.01704215284788 19.3399052695533 C30.53149775445019 19.38674515371415, 30.0459533560525 19.433585037875, 29.7728067896239 19.45993515863156 C29.40914682691309 19.471597025814518, 29.04548686420228 19.483258892997476, 28.523437500000004 19.5 C28.523437500000004 19.5, 28.5234375 19.5, 28.5234375 19.5 C14.910644406077292 19.5, 1.2978513121545845 19.5, -28.523437499999996 19.5 C-28.913121851786013 19.4875035813128, -29.302806203572025 19.475007162625598, -29.772806789623893 19.45993515863156 C-30.067554238571987 19.431501226717206, -30.362301687520084 19.403067294802856, -31.01704215284787 19.3399052695533 C-31.4240187798019 19.27410844465825, -31.83099540675593 19.2083116197632, -32.25103075967676 19.140403561325773 C-32.64507631043031 19.0504652357538, -33.03912186118387 18.96052691018183, -33.469701886235384 18.862249829261074 C-33.74433963006858 18.780738788494318, -34.01897737390178 18.699227747727562, -34.66804775146059 18.506587066708043 C-35.02978040360674 18.373466106898277, -35.391513055752895 18.240345147088515, -35.8411440951478 18.074876768247425 C-36.143181457547996 17.941173787532875, -36.445218819948195 17.807470806818326, -36.98417041279238 17.568892924097174 C-37.41669297376179 17.343246181083355, -37.8492155347312 17.11759943806954, -38.09242976407678 16.990714730406097 C-38.307699400022905 16.860217012030756, -38.522969035969034 16.729719293655414, -39.161368073605686 16.3427180453909 C-39.53612844017148 16.081301436789403, -39.91088880673727 15.819884828187906, -40.18659284457871 15.627565626425156 C-40.38622872527993 15.468361324099831, -40.58586460598115 15.309157021774507, -41.163891208501866 14.848196188198125 C-41.35016515143224 14.679027121767213, -41.53643909436262 14.5098580553363, -42.089247236767974 14.007812326905697 C-42.33403892254778 13.755044813566885, -42.57883060832757 13.502277300228073, -42.958858442968655 13.109867360095677 C-43.18077719977736 12.849188960813189, -43.40269595658606 12.588510561530699, -43.769151408126575 12.158051136245307 C-44.06709169091066 11.758838300232778, -44.36503197369475 11.35962546422025, -44.516796464640635 11.156274872382316 C-44.671673983893015 10.918341412373527, -44.8265515031454 10.680407952364739, -45.19872137860425 10.108655082055249 C-45.42744070910105 9.702540750414538, -45.65616003959786 9.29642641877383, -45.812123974273504 9.019496659696289 C-45.939791568705765 8.754392168208787, -46.06745916313802 8.489287676721283, -46.35448364880834 7.893275190886686 C-46.522468734450925 7.478348781578823, -46.6904538200935 7.06342237227096, -46.823571729970325 6.73461856121551 C-46.97937564155353 6.265362003509036, -47.13517955313674 5.796105445802563, -47.21746063421488 5.5482879393051325 C-47.34192054026181 5.073668376283711, -47.46638044630873 4.59904881326229, -47.53453178754556 4.339158212148136 C-47.623060963970914 3.88457960185199, -47.711590140396275 3.430000991555844, -47.773482276581774 3.112197953150904 C-47.832920394021286 2.6512076516739436, -47.8923585114608 2.1902173501969826, -47.93333020250937 1.872449005199809 C-47.949638784635354 1.6184296745370554, -47.965947366761334 1.364410343874302, -48.01341871591342 0.6250057626472781 C-48.01341871591342 0.17568010651716864, -48.01341871591342 -0.27364554961294085, -48.01341871591342 -0.6250057626472687 C-47.98293762048628 -1.0997734278222233, -47.952456525059155 -1.574541092997178, -47.93333020250937 -1.8724490051997822 C-47.90133059983937 -2.120631604472, -47.86933099716937 -2.3688142037442184, -47.773482276581774 -3.112197953150895 C-47.68751932098854 -3.5535995618450484, -47.60155636539531 -3.9950011705392012, -47.53453178754556 -4.339158212148126 C-47.425964141144135 -4.753173701392359, -47.31739649474271 -5.167189190636592, -47.21746063421489 -5.548287939305123 C-47.091303939075964 -5.928251804723863, -46.96514724393705 -6.308215670142602, -46.82357172997033 -6.734618561215485 C-46.70493974493957 -7.0276418578348645, -46.586307759908806 -7.320665154454244, -46.35448364880834 -7.893275190886676 C-46.175104904232015 -8.265758992089703, -45.99572615965569 -8.638242793292731, -45.812123974273504 -9.019496659696282 C-45.59540521179891 -9.404302767624275, -45.37868644932431 -9.78910887555227, -45.19872137860425 -10.108655082055243 C-45.01197943115356 -10.395540860573659, -44.82523748370288 -10.682426639092077, -44.51679646464064 -11.156274872382308 C-44.34520121450894 -11.38619687490991, -44.17360596437724 -11.616118877437511, -43.76915140812659 -12.158051136245302 C-43.498990264502126 -12.475397788151154, -43.22882912087766 -12.792744440057005, -42.95885844296866 -13.10986736009567 C-42.64659456045888 -13.43230545612856, -42.334330677949104 -13.75474355216145, -42.089247236767996 -14.007812326905677 C-41.83697933835449 -14.23691535760199, -41.58471143994098 -14.466018388298302, -41.16389120850189 -14.848196188198107 C-40.86962163845074 -15.082868339471766, -40.57535206839959 -15.317540490745426, -40.18659284457872 -15.627565626425149 C-39.87699363645157 -15.843528631680933, -39.567394428324434 -16.059491636936716, -39.161368073605715 -16.342718045390885 C-38.88430057981733 -16.51067798835473, -38.607233086028934 -16.678637931318576, -38.09242976407679 -16.99071473040609 C-37.81704137044572 -17.134384678968733, -37.54165297681465 -17.278054627531375, -36.98417041279239 -17.56889292409717 C-36.6863687908343 -17.700720868166773, -36.388567168876214 -17.83254881223637, -35.841144095147804 -18.07487676824742 C-35.42890367953328 -18.226585051902195, -35.01666326391876 -18.378293335556968, -34.66804775146062 -18.506587066708033 C-34.31581330012501 -18.61112840294808, -33.963578848789396 -18.715669739188122, -33.46970188623541 -18.862249829261067 C-33.20957079164288 -18.921623054087778, -32.94943969705035 -18.980996278914493, -32.251030759676766 -19.140403561325773 C-31.95303954675666 -19.188580469674324, -31.655048333836557 -19.23675737802288, -31.017042152847882 -19.3399052695533 C-30.55916441246638 -19.384076184489352, -30.10128667208488 -19.428247099425406, -29.772806789623903 -19.45993515863156 C-29.516150104242502 -19.46816563897981, -29.2594934188611 -19.476396119328058, -28.523437500000007 -19.5 C-28.523437500000004 -19.5, -28.523437500000004 -19.5, -28.5234375 -19.5\" stroke=\"none\" stroke-width=\"0\" fill=\"#ECECFF\" style=\"\"></path><path d=\"M-28.5234375 -19.5 C-10.465552329504504 -19.5, 7.592332840990991 -19.5, 28.5234375 -19.5 M-28.5234375 -19.5 C-13.768722618193436 -19.5, 0.9859922636131273 -19.5, 28.5234375 -19.5 M28.5234375 -19.5 C28.5234375 -19.5, 28.5234375 -19.5, 28.5234375 -19.5 M28.5234375 -19.5 C28.5234375 -19.5, 28.5234375 -19.5, 28.5234375 -19.5 M28.5234375 -19.5 C29.01357767529158 -19.484282158578374, 29.503717850583158 -19.46856431715675, 29.7728067896239 -19.45993515863156 M28.5234375 -19.5 C28.97535546710608 -19.485507870399868, 29.42727343421216 -19.47101574079974, 29.7728067896239 -19.45993515863156 M29.7728067896239 -19.45993515863156 C30.206196370260418 -19.418126587014783, 30.639585950896937 -19.376318015398006, 31.017042152847864 -19.3399052695533 M29.7728067896239 -19.45993515863156 C30.23119577559162 -19.415714924448665, 30.689584761559335 -19.371494690265774, 31.017042152847864 -19.3399052695533 M31.017042152847864 -19.3399052695533 C31.417503524569685 -19.275161780597635, 31.81796489629151 -19.21041829164197, 32.25103075967676 -19.140403561325776 M31.017042152847864 -19.3399052695533 C31.48942855473299 -19.263533499507773, 31.961814956618113 -19.187161729462247, 32.25103075967676 -19.140403561325776 M32.25103075967676 -19.140403561325776 C32.51624573716387 -19.079869973403813, 32.781460714650976 -19.01933638548185, 33.46970188623539 -18.862249829261074 M32.25103075967676 -19.140403561325776 C32.69163557822523 -19.03983838670723, 33.132240396773696 -18.939273212088686, 33.46970188623539 -18.862249829261074 M33.46970188623539 -18.862249829261074 C33.8041935218559 -18.76297446759133, 34.13868515747641 -18.66369910592159, 34.668047751460605 -18.50658706670804 M33.46970188623539 -18.862249829261074 C33.73783996287264 -18.782667855600625, 34.005978039509884 -18.703085881940176, 34.668047751460605 -18.50658706670804 M34.668047751460605 -18.50658706670804 C34.9695634944645 -18.39562648610163, 35.2710792374684 -18.284665905495224, 35.8411440951478 -18.074876768247425 M34.668047751460605 -18.50658706670804 C35.013606265539025 -18.379418339219292, 35.35916477961745 -18.252249611730544, 35.8411440951478 -18.074876768247425 M35.8411440951478 -18.074876768247425 C36.14173646955575 -17.941813440852997, 36.442328843963715 -17.808750113458565, 36.98417041279238 -17.568892924097174 M35.8411440951478 -18.074876768247425 C36.166495306134415 -17.930853438344414, 36.49184651712103 -17.786830108441407, 36.98417041279238 -17.568892924097174 M36.98417041279238 -17.568892924097174 C37.38734790193866 -17.358555486257067, 37.790525391084934 -17.14821804841696, 38.09242976407678 -16.990714730406097 M36.98417041279238 -17.568892924097174 C37.26747311242015 -17.421094087165407, 37.550775812047924 -17.273295250233637, 38.09242976407678 -16.990714730406097 M38.09242976407678 -16.990714730406097 C38.44173044593161 -16.778966604347044, 38.79103112778644 -16.567218478287995, 39.1613680736057 -16.342718045390892 M38.09242976407678 -16.990714730406097 C38.51780132704136 -16.732851989176197, 38.94317289000594 -16.474989247946297, 39.1613680736057 -16.342718045390892 M39.1613680736057 -16.342718045390892 C39.44302992724483 -16.146242929237363, 39.724691780883965 -15.949767813083833, 40.18659284457871 -15.627565626425154 M39.1613680736057 -16.342718045390892 C39.48927864497849 -16.11398182582108, 39.81718921635129 -15.885245606251273, 40.18659284457871 -15.627565626425154 M40.18659284457871 -15.627565626425154 C40.46453155803128 -15.405916898706513, 40.74247027148386 -15.184268170987874, 41.163891208501866 -14.848196188198123 M40.18659284457871 -15.627565626425154 C40.47054331486866 -15.401122682608277, 40.75449378515861 -15.174679738791399, 41.163891208501866 -14.848196188198123 M41.163891208501866 -14.848196188198123 C41.40839526446952 -14.62614407379112, 41.65289932043717 -14.40409195938412, 42.08924723676799 -14.007812326905688 M41.163891208501866 -14.848196188198123 C41.358973870272116 -14.671027276382768, 41.55405653204236 -14.493858364567414, 42.08924723676799 -14.007812326905688 M42.08924723676799 -14.007812326905688 C42.37600924083874 -13.711707014104253, 42.662771244909486 -13.415601701302817, 42.95885844296865 -13.10986736009568 M42.08924723676799 -14.007812326905688 C42.3902810926987 -13.696970155318011, 42.69131494862941 -13.386127983730335, 42.95885844296865 -13.10986736009568 M42.95885844296865 -13.10986736009568 C43.163172925470974 -12.86986794312505, 43.3674874079733 -12.62986852615442, 43.76915140812658 -12.158051136245305 M42.95885844296865 -13.10986736009568 C43.25241837328778 -12.765035161909585, 43.54597830360692 -12.420202963723488, 43.76915140812658 -12.158051136245305 M43.76915140812658 -12.158051136245305 C44.04288698621948 -11.79127039942501, 44.31662256431237 -11.424489662604715, 44.516796464640635 -11.156274872382312 M43.76915140812658 -12.158051136245305 C43.97044482131945 -11.888336300774057, 44.17173823451232 -11.618621465302809, 44.516796464640635 -11.156274872382312 M44.516796464640635 -11.156274872382312 C44.77572421540393 -10.758492315373436, 45.034651966167225 -10.36070975836456, 45.19872137860425 -10.108655082055241 M44.516796464640635 -11.156274872382312 C44.671399358788 -10.918763310281989, 44.826002252935375 -10.681251748181667, 45.19872137860425 -10.108655082055241 M45.19872137860425 -10.108655082055241 C45.411186636186244 -9.731401502778139, 45.62365189376823 -9.354147923501037, 45.812123974273504 -9.019496659696287 M45.19872137860425 -10.108655082055241 C45.326974257760774 -9.880929108100553, 45.4552271369173 -9.653203134145864, 45.812123974273504 -9.019496659696287 M45.812123974273504 -9.019496659696287 C45.953107024184 -8.726742340003113, 46.094090074094495 -8.43398802030994, 46.35448364880834 -7.893275190886684 M45.812123974273504 -9.019496659696287 C45.99629832065459 -8.637054688736239, 46.18047266703567 -8.254612717776192, 46.35448364880834 -7.893275190886684 M46.35448364880834 -7.893275190886684 C46.5045568198074 -7.52259155705164, 46.654629990806455 -7.151907923216594, 46.823571729970325 -6.734618561215508 M46.35448364880834 -7.893275190886684 C46.47502933930242 -7.595525004773941, 46.59557502979649 -7.297774818661198, 46.823571729970325 -6.734618561215508 M46.823571729970325 -6.734618561215508 C46.93066647995721 -6.412066237486197, 47.03776122994409 -6.089513913756887, 47.21746063421488 -5.548287939305138 M46.823571729970325 -6.734618561215508 C46.91321723669609 -6.464620578029322, 47.00286274342186 -6.194622594843136, 47.21746063421488 -5.548287939305138 M47.21746063421488 -5.548287939305138 C47.294662039297144 -5.253885522425846, 47.37186344437941 -4.959483105546555, 47.53453178754556 -4.339158212148133 M47.21746063421488 -5.548287939305138 C47.33769994561366 -5.089763332894406, 47.457939257012434 -4.631238726483674, 47.53453178754556 -4.339158212148133 M47.53453178754556 -4.339158212148133 C47.62737312843252 -3.8624375487179656, 47.720214469319465 -3.385716885287798, 47.773482276581774 -3.1121979531509023 M47.53453178754556 -4.339158212148133 C47.62698523520135 -3.8644292984787256, 47.71943868285714 -3.389700384809318, 47.773482276581774 -3.1121979531509023 M47.773482276581774 -3.1121979531509023 C47.82941892391266 -2.678364362392964, 47.885355571243544 -2.2445307716350253, 47.93333020250937 -1.872449005199798 M47.773482276581774 -3.1121979531509023 C47.82515696718486 -2.7114192571552223, 47.876831657787946 -2.310640561159542, 47.93333020250937 -1.872449005199798 M47.93333020250937 -1.872449005199798 C47.95345602237902 -1.5589731154605482, 47.97358184224868 -1.2454972257212982, 48.01341871591342 -0.6250057626472757 M47.93333020250937 -1.872449005199798 C47.95931301413753 -1.4677457411431667, 47.98529582576568 -1.0630424770865354, 48.01341871591342 -0.6250057626472757 M48.01341871591342 -0.6250057626472757 C48.01341871591342 -0.27906709189183343, 48.01341871591342 0.06687157886360884, 48.01341871591342 0.625005762647271 M48.01341871591342 -0.6250057626472757 C48.01341871591342 -0.17669476152867136, 48.01341871591342 0.271616239589933, 48.01341871591342 0.625005762647271 M48.01341871591342 0.625005762647271 C47.98314496318898 1.0965438978638316, 47.95287121046453 1.5680820330803922, 47.93333020250937 1.8724490051997846 M48.01341871591342 0.625005762647271 C47.984447892398514 1.0762497237197695, 47.9554770688836 1.527493684792268, 47.93333020250937 1.8724490051997846 M47.93333020250937 1.8724490051997846 C47.88595867871256 2.2398531892023232, 47.838587154915764 2.6072573732048614, 47.773482276581774 3.1121979531508885 M47.93333020250937 1.8724490051997846 C47.87467966233758 2.3273310129130427, 47.81602912216578 2.782213020626301, 47.773482276581774 3.1121979531508885 M47.773482276581774 3.1121979531508885 C47.70809253475456 3.4479604573068086, 47.642702792927345 3.783722961462728, 47.53453178754556 4.339158212148129 M47.773482276581774 3.1121979531508885 C47.70236928694446 3.477348125202817, 47.63125629730715 3.8424982972547452, 47.53453178754556 4.339158212148129 M47.53453178754556 4.339158212148129 C47.441821850950916 4.692701381124205, 47.34911191435627 5.0462445501002815, 47.21746063421489 5.548287939305125 M47.53453178754556 4.339158212148129 C47.42847797086485 4.743587379166607, 47.32242415418413 5.148016546185087, 47.21746063421489 5.548287939305125 M47.21746063421489 5.548287939305125 C47.13782051253195 5.788151296883932, 47.05818039084901 6.028014654462737, 46.823571729970325 6.734618561215495 M47.21746063421489 5.548287939305125 C47.084434038524904 5.948942850613654, 46.95140744283492 6.3495977619221815, 46.823571729970325 6.734618561215495 M46.823571729970325 6.734618561215495 C46.67900195947038 7.0917086894167305, 46.534432188970435 7.448798817617966, 46.35448364880834 7.893275190886679 M46.823571729970325 6.734618561215495 C46.72067876927978 6.988766163421202, 46.61778580858924 7.242913765626908, 46.35448364880834 7.893275190886679 M46.35448364880834 7.893275190886679 C46.23194784987984 8.1477233992078, 46.109412050951335 8.402171607528922, 45.812123974273504 9.019496659696284 M46.35448364880834 7.893275190886679 C46.181003533790204 8.25351036160167, 46.00752341877207 8.613745532316662, 45.812123974273504 9.019496659696284 M45.812123974273504 9.019496659696284 C45.59094177816177 9.412228046018683, 45.36975958205004 9.80495943234108, 45.19872137860425 10.108655082055236 M45.812123974273504 9.019496659696284 C45.63467500059526 9.334575281119044, 45.45722602691701 9.649653902541804, 45.19872137860425 10.108655082055236 M45.19872137860425 10.108655082055236 C45.009166326331794 10.399862545004305, 44.81961127405934 10.691070007953375, 44.51679646464064 11.156274872382301 M45.19872137860425 10.108655082055236 C44.977210959759965 10.44895456927604, 44.75570054091568 10.789254056496844, 44.51679646464064 11.156274872382301 M44.51679646464064 11.156274872382301 C44.271213223556714 11.485334042341245, 44.025629982472786 11.814393212300189, 43.76915140812658 12.158051136245302 M44.51679646464064 11.156274872382301 C44.360068720888044 11.366275770819595, 44.20334097713545 11.576276669256888, 43.76915140812658 12.158051136245302 M43.76915140812658 12.158051136245302 C43.56068391672938 12.402928913776753, 43.35221642533218 12.647806691308205, 42.95885844296866 13.10986736009567 M43.76915140812658 12.158051136245302 C43.56130765032586 12.402196240802883, 43.35346389252514 12.646341345360467, 42.95885844296866 13.10986736009567 M42.95885844296866 13.10986736009567 C42.68088908276816 13.396893546211587, 42.40291972256766 13.683919732327501, 42.08924723676799 14.007812326905684 M42.95885844296866 13.10986736009567 C42.6330400899154 13.446301559807438, 42.30722173686213 13.782735759519205, 42.08924723676799 14.007812326905684 M42.08924723676799 14.007812326905684 C41.7910177605858 14.278656446454802, 41.49278828440362 14.549500566003921, 41.16389120850189 14.848196188198111 M42.08924723676799 14.007812326905684 C41.738749060586535 14.326125496840122, 41.38825088440508 14.64443866677456, 41.16389120850189 14.848196188198111 M41.16389120850189 14.848196188198111 C40.81610475385429 15.125546630793329, 40.468318299206686 15.402897073388544, 40.18659284457871 15.627565626425152 M41.16389120850189 14.848196188198111 C40.95509935707991 15.014702133522626, 40.74630750565793 15.18120807884714, 40.18659284457871 15.627565626425152 M40.18659284457871 15.627565626425152 C39.903639643429706 15.824941530700038, 39.62068644228071 16.022317434974923, 39.16136807360571 16.34271804539089 M40.18659284457871 15.627565626425152 C39.90246197391217 15.825763021974984, 39.618331103245616 16.023960417524815, 39.16136807360571 16.34271804539089 M39.16136807360571 16.34271804539089 C38.81776560216583 16.55101188281, 38.47416313072594 16.759305720229108, 38.09242976407678 16.990714730406093 M39.16136807360571 16.34271804539089 C38.86059596644253 16.5250478642863, 38.559823859279355 16.707377683181715, 38.09242976407678 16.990714730406093 M38.09242976407678 16.990714730406093 C37.663927853586486 17.214263902640308, 37.23542594309619 17.437813074874526, 36.98417041279239 17.56889292409717 M38.09242976407678 16.990714730406093 C37.79983970204313 17.143358778356173, 37.507249640009476 17.29600282630625, 36.98417041279239 17.56889292409717 M36.98417041279239 17.56889292409717 C36.60680308109563 17.735942247635162, 36.22943574939887 17.902991571173153, 35.841144095147804 18.07487676824742 M36.98417041279239 17.56889292409717 C36.752973622682056 17.67123688486991, 36.52177683257172 17.77358084564265, 35.841144095147804 18.07487676824742 M35.841144095147804 18.07487676824742 C35.6049404376011 18.16180189766728, 35.368736780054405 18.248727027087142, 34.66804775146062 18.506587066708033 M35.841144095147804 18.07487676824742 C35.58194178492521 18.170265614449225, 35.322739474702615 18.265654460651028, 34.66804775146062 18.506587066708033 M34.66804775146062 18.506587066708033 C34.24386274702234 18.63248294943279, 33.81967774258406 18.758378832157547, 33.46970188623541 18.86224982926107 M34.66804775146062 18.506587066708033 C34.38594127073277 18.590314789380923, 34.103834790004925 18.674042512053813, 33.46970188623541 18.86224982926107 M33.46970188623541 18.86224982926107 C33.110126321899884 18.94432060537081, 32.75055075756436 19.026391381480547, 32.251030759676766 19.140403561325773 M33.46970188623541 18.86224982926107 C33.138515587996466 18.93784094064154, 32.807329289757526 19.013432052022008, 32.251030759676766 19.140403561325773 M32.251030759676766 19.140403561325773 C31.932175389397255 19.191953624832237, 31.613320019117747 19.243503688338702, 31.01704215284788 19.3399052695533 M32.251030759676766 19.140403561325773 C31.896254760604144 19.19776099352687, 31.541478761531522 19.255118425727968, 31.01704215284788 19.3399052695533 M31.01704215284788 19.3399052695533 C30.521744450513015 19.387686043214906, 30.02644674817815 19.43546681687651, 29.7728067896239 19.45993515863156 M31.01704215284788 19.3399052695533 C30.529214830163607 19.386965384674458, 30.041387507479335 19.434025499795617, 29.7728067896239 19.45993515863156 M29.7728067896239 19.45993515863156 C29.40665221942235 19.471677023021286, 29.040497649220807 19.483418887411016, 28.523437500000004 19.5 M29.7728067896239 19.45993515863156 C29.439482136945067 19.47062423146589, 29.106157484266237 19.481313304300222, 28.523437500000004 19.5 M28.523437500000004 19.5 C28.523437500000004 19.5, 28.5234375 19.5, 28.5234375 19.5 M28.523437500000004 19.5 C28.523437500000004 19.5, 28.5234375 19.5, 28.5234375 19.5 M28.5234375 19.5 C6.313573509172329 19.5, -15.896290481655342 19.5, -28.523437499999996 19.5 M28.5234375 19.5 C10.500894201126918 19.5, -7.521649097746163 19.5, -28.523437499999996 19.5 M-28.523437499999996 19.5 C-29.016039222769038 19.484203221541883, -29.50864094553808 19.46840644308377, -29.772806789623893 19.45993515863156 M-28.523437499999996 19.5 C-28.990864038460728 19.485010540702127, -29.45829057692146 19.470021081404255, -29.772806789623893 19.45993515863156 M-29.772806789623893 19.45993515863156 C-30.164459875711064 19.42215285644848, -30.556112961798235 19.384370554265402, -31.01704215284787 19.3399052695533 M-29.772806789623893 19.45993515863156 C-30.042710247588335 19.43389789664813, -30.31261370555278 19.407860634664697, -31.01704215284787 19.3399052695533 M-31.01704215284787 19.3399052695533 C-31.424582602752785 19.27401729013606, -31.832123052657703 19.208129310718828, -32.25103075967676 19.140403561325773 M-31.01704215284787 19.3399052695533 C-31.442641469176035 19.27109767266135, -31.8682407855042 19.202290075769408, -32.25103075967676 19.140403561325773 M-32.25103075967676 19.140403561325773 C-32.54212422339562 19.073963377794318, -32.83321768711447 19.007523194262863, -33.469701886235384 18.862249829261074 M-32.25103075967676 19.140403561325773 C-32.622823441222906 19.05554430793685, -32.99461612276906 18.970685054547925, -33.469701886235384 18.862249829261074 M-33.469701886235384 18.862249829261074 C-33.715052142588554 18.78943116104523, -33.960402398941724 18.716612492829388, -34.66804775146059 18.506587066708043 M-33.469701886235384 18.862249829261074 C-33.91827460628492 18.72911580055663, -34.36684732633445 18.595981771852188, -34.66804775146059 18.506587066708043 M-34.66804775146059 18.506587066708043 C-34.94108114294015 18.40610825475056, -35.214114534419714 18.30562944279308, -35.8411440951478 18.074876768247425 M-34.66804775146059 18.506587066708043 C-35.078162589519906 18.355661015242212, -35.48827742757921 18.20473496377638, -35.8411440951478 18.074876768247425 M-35.8411440951478 18.074876768247425 C-36.20229682714399 17.915005167007862, -36.56344955914019 17.7551335657683, -36.98417041279238 17.568892924097174 M-35.8411440951478 18.074876768247425 C-36.19170450006488 17.919694075995565, -36.54226490498197 17.764511383743706, -36.98417041279238 17.568892924097174 M-36.98417041279238 17.568892924097174 C-37.26934798902735 17.420115965240345, -37.554525565262324 17.271339006383517, -38.09242976407678 16.990714730406097 M-36.98417041279238 17.568892924097174 C-37.21708053876087 17.44738386056547, -37.449990664729356 17.325874797033766, -38.09242976407678 16.990714730406097 M-38.09242976407678 16.990714730406097 C-38.387209365301885 16.81201760382622, -38.68198896652698 16.633320477246343, -39.161368073605686 16.3427180453909 M-38.09242976407678 16.990714730406097 C-38.49072711066796 16.749264538247505, -38.88902445725914 16.507814346088914, -39.161368073605686 16.3427180453909 M-39.161368073605686 16.3427180453909 C-39.52903438649739 16.086249941535808, -39.89670069938911 15.829781837680716, -40.18659284457871 15.627565626425156 M-39.161368073605686 16.3427180453909 C-39.372903309715305 16.195160221893612, -39.58443854582492 16.047602398396325, -40.18659284457871 15.627565626425156 M-40.18659284457871 15.627565626425156 C-40.56876957691833 15.322789852534276, -40.950946309257944 15.018014078643397, -41.163891208501866 14.848196188198125 M-40.18659284457871 15.627565626425156 C-40.43370622621122 15.430499280536488, -40.68081960784373 15.233432934647817, -41.163891208501866 14.848196188198125 M-41.163891208501866 14.848196188198125 C-41.48994913387515 14.552079007394068, -41.816007059248435 14.25596182659001, -42.089247236767974 14.007812326905697 M-41.163891208501866 14.848196188198125 C-41.468134176188244 14.571890774773168, -41.772377143874614 14.295585361348211, -42.089247236767974 14.007812326905697 M-42.089247236767974 14.007812326905697 C-42.37504257775353 13.712705173104242, -42.660837918739084 13.417598019302789, -42.958858442968655 13.109867360095677 M-42.089247236767974 14.007812326905697 C-42.266645201103955 13.824634364085062, -42.44404316543993 13.641456401264428, -42.958858442968655 13.109867360095677 M-42.958858442968655 13.109867360095677 C-43.16666395050555 12.865767186474484, -43.37446945804245 12.621667012853292, -43.769151408126575 12.158051136245307 M-42.958858442968655 13.109867360095677 C-43.27515291318987 12.73832987770863, -43.59144738341108 12.366792395321584, -43.769151408126575 12.158051136245307 M-43.769151408126575 12.158051136245307 C-44.0317224275638 11.806229890911396, -44.294293447001024 11.454408645577484, -44.516796464640635 11.156274872382316 M-43.769151408126575 12.158051136245307 C-43.94192907906539 11.92654479755693, -44.1147067500042 11.695038458868554, -44.516796464640635 11.156274872382316 M-44.516796464640635 11.156274872382316 C-44.724542333114556 10.83712143082969, -44.93228820158848 10.517967989277063, -45.19872137860425 10.108655082055249 M-44.516796464640635 11.156274872382316 C-44.754899349996464 10.79048490089866, -44.99300223535229 10.424694929415004, -45.19872137860425 10.108655082055249 M-45.19872137860425 10.108655082055249 C-45.42868214148722 9.700336461504229, -45.658642904370204 9.292017840953209, -45.812123974273504 9.019496659696289 M-45.19872137860425 10.108655082055249 C-45.42563715427208 9.70574314464311, -45.65255292993991 9.302831207230971, -45.812123974273504 9.019496659696289 M-45.812123974273504 9.019496659696289 C-45.93371643769049 8.767007307748976, -46.05530890110748 8.514517955801663, -46.35448364880834 7.893275190886686 M-45.812123974273504 9.019496659696289 C-45.98929819049991 8.651590608781223, -46.166472406726314 8.28368455786616, -46.35448364880834 7.893275190886686 M-46.35448364880834 7.893275190886686 C-46.495421270831486 7.545156539645961, -46.63635889285464 7.197037888405236, -46.823571729970325 6.73461856121551 M-46.35448364880834 7.893275190886686 C-46.48433158549251 7.57254827683771, -46.614179522176684 7.251821362788735, -46.823571729970325 6.73461856121551 M-46.823571729970325 6.73461856121551 C-46.95356326762254 6.343104761145899, -47.08355480527476 5.9515909610762865, -47.21746063421488 5.5482879393051325 M-46.823571729970325 6.73461856121551 C-46.93171437441646 6.408910146334239, -47.03985701886259 6.0832017314529665, -47.21746063421488 5.5482879393051325 M-47.21746063421488 5.5482879393051325 C-47.33714459420343 5.09188112851242, -47.45682855419198 4.635474317719708, -47.53453178754556 4.339158212148136 M-47.21746063421488 5.5482879393051325 C-47.29074103628916 5.268838006268731, -47.364021438363444 4.989388073232329, -47.53453178754556 4.339158212148136 M-47.53453178754556 4.339158212148136 C-47.61597330305284 3.9209732426886563, -47.69741481856012 3.502788273229177, -47.773482276581774 3.112197953150904 M-47.53453178754556 4.339158212148136 C-47.62712588507424 3.8637070911077793, -47.71971998260293 3.388255970067423, -47.773482276581774 3.112197953150904 M-47.773482276581774 3.112197953150904 C-47.82005889824187 2.7509588731494756, -47.86663551990197 2.389719793148047, -47.93333020250937 1.872449005199809 M-47.773482276581774 3.112197953150904 C-47.81992743534124 2.7519784734464334, -47.86637259410072 2.3917589937419628, -47.93333020250937 1.872449005199809 M-47.93333020250937 1.872449005199809 C-47.950473093834205 1.6054346353226363, -47.96761598515904 1.3384202654454636, -48.01341871591342 0.6250057626472781 M-47.93333020250937 1.872449005199809 C-47.9613788694363 1.4355683773363404, -47.98942753636324 0.9986877494728714, -48.01341871591342 0.6250057626472781 M-48.01341871591342 0.6250057626472781 C-48.01341871591342 0.24287877556663723, -48.01341871591342 -0.13924821151400368, -48.01341871591342 -0.6250057626472687 M-48.01341871591342 0.6250057626472781 C-48.01341871591342 0.2913978157877444, -48.01341871591342 -0.04221013107178939, -48.01341871591342 -0.6250057626472687 M-48.01341871591342 -0.6250057626472687 C-47.98465222527431 -1.0730670742446824, -47.9558857346352 -1.521128385842096, -47.93333020250937 -1.8724490051997822 M-48.01341871591342 -0.6250057626472687 C-47.985690392461834 -1.0568967823055349, -47.95796206901025 -1.488787801963801, -47.93333020250937 -1.8724490051997822 M-47.93333020250937 -1.8724490051997822 C-47.88160322665267 -2.2736332152975844, -47.82987625079597 -2.6748174253953874, -47.773482276581774 -3.112197953150895 M-47.93333020250937 -1.8724490051997822 C-47.89314036878326 -2.1841534191991476, -47.85295053505715 -2.4958578331985133, -47.773482276581774 -3.112197953150895 M-47.773482276581774 -3.112197953150895 C-47.72230026560912 -3.3750067621736193, -47.67111825463647 -3.6378155711963434, -47.53453178754556 -4.339158212148126 M-47.773482276581774 -3.112197953150895 C-47.68443269169971 -3.5694487508838666, -47.59538310681765 -4.026699548616838, -47.53453178754556 -4.339158212148126 M-47.53453178754556 -4.339158212148126 C-47.454291525387085 -4.645149108107997, -47.37405126322861 -4.9511400040678675, -47.21746063421489 -5.548287939305123 M-47.53453178754556 -4.339158212148126 C-47.453412166328285 -4.648502485315831, -47.37229254511101 -4.9578467584835355, -47.21746063421489 -5.548287939305123 M-47.21746063421489 -5.548287939305123 C-47.12945231059906 -5.813354987813874, -47.04144398698324 -6.078422036322625, -46.82357172997033 -6.734618561215485 M-47.21746063421489 -5.548287939305123 C-47.12403912047594 -5.829658653989998, -47.030617606736996 -6.111029368674874, -46.82357172997033 -6.734618561215485 M-46.82357172997033 -6.734618561215485 C-46.67084966088873 -7.111845024527383, -46.51812759180712 -7.489071487839282, -46.35448364880834 -7.893275190886676 M-46.82357172997033 -6.734618561215485 C-46.66088025848002 -7.136469641222168, -46.498188786989715 -7.53832072122885, -46.35448364880834 -7.893275190886676 M-46.35448364880834 -7.893275190886676 C-46.24115224446769 -8.12861027690362, -46.12782084012705 -8.363945362920564, -45.812123974273504 -9.019496659696282 M-46.35448364880834 -7.893275190886676 C-46.22990552917434 -8.151964321851437, -46.10532740954033 -8.410653452816199, -45.812123974273504 -9.019496659696282 M-45.812123974273504 -9.019496659696282 C-45.59924485297256 -9.397485095914625, -45.386365731671624 -9.775473532132969, -45.19872137860425 -10.108655082055243 M-45.812123974273504 -9.019496659696282 C-45.64038478971326 -9.324436972361195, -45.468645605153014 -9.629377285026107, -45.19872137860425 -10.108655082055243 M-45.19872137860425 -10.108655082055243 C-44.991240473822714 -10.427401468223653, -44.78375956904117 -10.746147854392063, -44.51679646464064 -11.156274872382308 M-45.19872137860425 -10.108655082055243 C-45.00215721777027 -10.410630417963999, -44.80559305693629 -10.712605753872754, -44.51679646464064 -11.156274872382308 M-44.51679646464064 -11.156274872382308 C-44.33632261818377 -11.39809338512887, -44.1558487717269 -11.639911897875434, -43.76915140812659 -12.158051136245302 M-44.51679646464064 -11.156274872382308 C-44.320410659367184 -11.419413960333825, -44.12402485409373 -11.682553048285342, -43.76915140812659 -12.158051136245302 M-43.76915140812659 -12.158051136245302 C-43.51291552548098 -12.459040384235598, -43.256679642835365 -12.760029632225892, -42.95885844296866 -13.10986736009567 M-43.76915140812659 -12.158051136245302 C-43.49413469835174 -12.481101412440939, -43.21911798857689 -12.804151688636574, -42.95885844296866 -13.10986736009567 M-42.95885844296866 -13.10986736009567 C-42.75033246566228 -13.325187551965636, -42.54180648835591 -13.540507743835601, -42.089247236767996 -14.007812326905677 M-42.95885844296866 -13.10986736009567 C-42.768666942377884 -13.306255699468245, -42.578475441787106 -13.502644038840822, -42.089247236767996 -14.007812326905677 M-42.089247236767996 -14.007812326905677 C-41.730366378849496 -14.333738426600094, -41.371485520930996 -14.659664526294511, -41.16389120850189 -14.848196188198107 M-42.089247236767996 -14.007812326905677 C-41.830562834433046 -14.242742656692059, -41.57187843209809 -14.477672986478439, -41.16389120850189 -14.848196188198107 M-41.16389120850189 -14.848196188198107 C-40.877601474062295 -15.076504632923893, -40.591311739622704 -15.304813077649676, -40.18659284457872 -15.627565626425149 M-41.16389120850189 -14.848196188198107 C-40.853504076760295 -15.095721666013567, -40.5431169450187 -15.343247143829025, -40.18659284457872 -15.627565626425149 M-40.18659284457872 -15.627565626425149 C-39.8994907149507 -15.827835643602775, -39.612388585322684 -16.028105660780405, -39.161368073605715 -16.342718045390885 M-40.18659284457872 -15.627565626425149 C-39.96184682547381 -15.784338720254372, -39.7371008063689 -15.941111814083596, -39.161368073605715 -16.342718045390885 M-39.161368073605715 -16.342718045390885 C-38.868489519651156 -16.520262745943565, -38.5756109656966 -16.697807446496245, -38.09242976407679 -16.99071473040609 M-39.161368073605715 -16.342718045390885 C-38.87263728974856 -16.51774834333552, -38.5839065058914 -16.69277864128015, -38.09242976407679 -16.99071473040609 M-38.09242976407679 -16.99071473040609 C-37.76570234227444 -17.161168217081475, -37.438974920472084 -17.331621703756863, -36.98417041279239 -17.56889292409717 M-38.09242976407679 -16.99071473040609 C-37.82879936635025 -17.128250540036696, -37.56516896862371 -17.265786349667305, -36.98417041279239 -17.56889292409717 M-36.98417041279239 -17.56889292409717 C-36.748818795822416 -17.673076103472113, -36.513467178852444 -17.77725928284705, -35.841144095147804 -18.07487676824742 M-36.98417041279239 -17.56889292409717 C-36.66516666790127 -17.710106419050593, -36.346162923010155 -17.851319914004016, -35.841144095147804 -18.07487676824742 M-35.841144095147804 -18.07487676824742 C-35.41089821875879 -18.233211227907862, -34.98065234236977 -18.391545687568303, -34.66804775146062 -18.506587066708033 M-35.841144095147804 -18.07487676824742 C-35.531173308019525 -18.188948883249175, -35.22120252089124 -18.30302099825093, -34.66804775146062 -18.506587066708033 M-34.66804775146062 -18.506587066708033 C-34.25229022848072 -18.629981717172697, -33.83653270550081 -18.75337636763736, -33.46970188623541 -18.862249829261067 M-34.66804775146062 -18.506587066708033 C-34.396661040081376 -18.587133218107475, -34.12527432870213 -18.667679369506917, -33.46970188623541 -18.862249829261067 M-33.46970188623541 -18.862249829261067 C-33.09677872866918 -18.94736710642453, -32.72385557110294 -19.032484383587995, -32.251030759676766 -19.140403561325773 M-33.46970188623541 -18.862249829261067 C-33.052269622672476 -18.957526019419216, -32.63483735910954 -19.052802209577365, -32.251030759676766 -19.140403561325773 M-32.251030759676766 -19.140403561325773 C-31.98686693894865 -19.183111519240068, -31.722703118220533 -19.225819477154364, -31.017042152847882 -19.3399052695533 M-32.251030759676766 -19.140403561325773 C-31.903808544551097 -19.196539756318796, -31.556586329425432 -19.252675951311822, -31.017042152847882 -19.3399052695533 M-31.017042152847882 -19.3399052695533 C-30.63682439756401 -19.376584419126782, -30.256606642280136 -19.413263568700263, -29.772806789623903 -19.45993515863156 M-31.017042152847882 -19.3399052695533 C-30.706778228775878 -19.369836057161564, -30.396514304703878 -19.399766844769825, -29.772806789623903 -19.45993515863156 M-29.772806789623903 -19.45993515863156 C-29.410083330532363 -19.471566993966242, -29.047359871440822 -19.483198829300925, -28.523437500000007 -19.5 M-29.772806789623903 -19.45993515863156 C-29.453014073312232 -19.470190288604915, -29.13322135700056 -19.480445418578267, -28.523437500000007 -19.5 M-28.523437500000007 -19.5 C-28.523437500000004 -19.5, -28.523437500000004 -19.5, -28.5234375 -19.5 M-28.523437500000007 -19.5 C-28.523437500000004 -19.5, -28.5234375 -19.5, -28.5234375 -19.5\" stroke=\"#9370DB\" stroke-width=\"1.3\" fill=\"none\" stroke-dasharray=\"0 0\" style=\"\"></path></g><g class=\"label\" style=\"\" transform=\"translate(-35.6484375, -12)\"><rect></rect><foreignObject width=\"71.296875\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Spotnana</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-E1-1\" transform=\"translate(210.50340270996094, 39.237871170043945)\"><polygon points=\"0,0 96.734375,0 96.734375,-39 0,-39 0,0 -8,0 104.734375,0 104.734375,-39 -8,-39 -8,0\" class=\"label-container\" transform=\"translate(-48.3671875,19.5)\"></polygon><g class=\"label\" style=\"\" transform=\"translate(-40.8671875, -12)\"><rect></rect><foreignObject width=\"81.734375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Endpoint A</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-E2-3\" transform=\"translate(210.50340270996094, 151.74184036254883)\"><polygon points=\"0,0 96.953125,0 96.953125,-39 0,-39 0,0 -8,0 104.953125,0 104.953125,-39 -8,-39 -8,0\" class=\"label-container\" transform=\"translate(-48.4765625,19.5)\"></polygon><g class=\"label\" style=\"\" transform=\"translate(-40.9765625, -12)\"><rect></rect><foreignObject width=\"81.953125\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Endpoint B</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-E3-5\" transform=\"translate(210.50340270996094, 264.23916816711426)\"><polygon points=\"0,0 96.703125,0 96.703125,-39 0,-39 0,0 -8,0 104.703125,0 104.703125,-39 -8,-39 -8,0\" class=\"label-container\" transform=\"translate(-48.3515625,19.5)\"></polygon><g class=\"label\" style=\"\" transform=\"translate(-40.8515625, -12)\"><rect></rect><foreignObject width=\"81.703125\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Endpoint C</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-O1-7\" transform=\"translate(345.56590270996094, 39.237871170043945)\"><path d=\"M0,7.825246887075998 a28.4765625,7.825246887075998 0,0,0 56.953125,0 a28.4765625,7.825246887075998 0,0,0 -56.953125,0 l0,46.825246887076 a28.4765625,7.825246887075998 0,0,0 56.953125,0 l0,-46.825246887076\" class=\"basic label-container\" style=\"\" transform=\"translate(-28.4765625, -31.237870330613998)\"></path><g class=\"label\" style=\"\" transform=\"translate(-20.9765625, -2)\"><rect></rect><foreignObject width=\"41.953125\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Org A</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-O2-9\" transform=\"translate(345.56590270996094, 151.74184036254883)\"><path d=\"M0,7.845870143236984 a28.5859375,7.845870143236984 0,0,0 57.171875,0 a28.5859375,7.845870143236984 0,0,0 -57.171875,0 l0,46.84587014323698 a28.5859375,7.845870143236984 0,0,0 57.171875,0 l0,-46.84587014323698\" class=\"basic label-container\" style=\"\" transform=\"translate(-28.5859375, -31.268805214855472)\"></path><g class=\"label\" style=\"\" transform=\"translate(-21.0859375, -2)\"><rect></rect><foreignObject width=\"42.171875\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Org B</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-O3-11\" transform=\"translate(345.56590270996094, 264.23916816711426)\"><path d=\"M0,7.820821164748325 a28.453125,7.820821164748325 0,0,0 56.90625,0 a28.453125,7.820821164748325 0,0,0 -56.90625,0 l0,46.820821164748324 a28.453125,7.820821164748325 0,0,0 56.90625,0 l0,-46.820821164748324\" class=\"basic label-container\" style=\"\" transform=\"translate(-28.453125, -31.231231747122486)\"></path><g class=\"label\" style=\"\" transform=\"translate(-20.953125, -2)\"><rect></rect><foreignObject width=\"41.90625\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Org C</p></span></div></foreignObject></g></g></g></g></g></svg></div>"},"children":["flowchart LR\n    S([Spotnana]) --> E1[[Endpoint A]]\n    S --> E2[[Endpoint B]]\n    S --> E3[[Endpoint C]]\n    E1 --> O1[(Org A)]\n    E2 --> O2[(Org B)]\n    E3 --> O3[(Org C)]\n"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},"This model is a good fit for partners who manage distinct integrations per customer."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["For each subscription, set ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["subscriberId"]}," to the organization it serves."," ","You can either omit ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["eventSource"]}," (it defaults to ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["COMPANY = subscriberId"]},") or set it explicitly:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","data-title":"POST /v3/webhooks/subscriptions","header":{"title":"POST /v3/webhooks/subscriptions","controls":{"copy":{}}},"source":"\"eventSource\": {\n  \"scopes\": [\n    { \"predicates\": [ { \"type\": \"COMPANY\", \"comparator\": \"IN\", \"values\": [\"company1-id\"] } ] }\n  ]\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"Admonition","attributes":{"type":"info"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Note:"]}," While our platform supports this subscription model we do not prefer this approach as it requires separate"," ","setup for each organization. We recommend using option A instead."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"event-and-operation-filtering","__idx":4},"children":["Event and operation filtering"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Partners can choose which event and operations that they wish to receive. You can:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Subscribe to only specific webhook events through the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["eventTypes"]}," field (e.g., ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"/docs/openapi/webhookeventapi/webhooks/paths/pnr_v3/post"},"children":["PNR_V3"]},")."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Control which company's events a subscription receives through the optional ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["eventSource"]}," object. If the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["eventSource"]}," is omitted, the subscription defaults to the subscriber's ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["companyId"]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Route a delivered event to the right customer within a single TMC-level subscription using the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["audience"]}," > ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["organizationId"]}," field included in every payload."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Note:"]}," Currently the operation filtering is implemented as a blacklist (i.e., to exclude specific operations that you don't want to receive)."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"event-delivery","__idx":5},"children":["Event delivery"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Here are some important points to note regarding webhook delivery:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Webhooks support payload delivery to one endpoint per subscription."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["You can create multiple subscriptions (each delivering to its own endpoint) using the ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"/docs/openapi/webhooksubscriptionapi/webhook-subscription/createwebhooksubscription"},"children":["Create Webhook Subscription API"]},"."]}]}]},"headings":[{"value":"Subscription model","id":"subscription-model","depth":1},{"value":"Supported subscription models","id":"supported-subscription-models","depth":2},{"value":"Option A: Single TMC-level webhook (recommended)","id":"option-a-single-tmc-level-webhook-recommended","depth":3},{"value":"Option B: Organization specific webhooks","id":"option-b-organization-specific-webhooks","depth":3},{"value":"Event and operation filtering","id":"event-and-operation-filtering","depth":2},{"value":"Event delivery","id":"event-delivery","depth":2}],"frontmatter":{"seo":{"title":"Subscription model"}},"lastModified":"2026-06-18T12:59:39.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/webhooks/webhook-config-model","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}