{
  "item": [
    {
      "id": "2b41d399-d19e-495e-a3d9-009b36a7cdf7",
      "name": "Token",
      "request": {
        "name": "Token",
        "description": {
          "content": "Obtain an access token using the OAuth 2.0 client credentials grant.",
          "type": "text/plain"
        },
        "url": {
          "path": [
            "oauth",
            "token"
          ],
          "host": [
            "{{baseUrl}}"
          ],
          "query": [],
          "variable": []
        },
        "header": [
          {
            "key": "Content-Type",
            "value": "application/x-www-form-urlencoded"
          },
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "method": "POST",
        "auth": null,
        "body": {
          "mode": "urlencoded",
          "urlencoded": [
            {
              "disabled": false,
              "key": "grant_type",
              "value": "<string>",
              "description": "(Required) "
            },
            {
              "disabled": false,
              "key": "client_id",
              "value": "<string>",
              "description": "(Required) "
            },
            {
              "disabled": false,
              "key": "client_secret",
              "value": "<string>",
              "description": "(Required) "
            },
            {
              "disabled": false,
              "key": "scope",
              "value": "<string>",
              "description": "Space-delimited scopes such as menus:write stores:read orders:read."
            }
          ]
        }
      },
      "response": [
        {
          "id": "03324a66-878b-4a3f-8552-0a1ade1fb218",
          "name": "Ok",
          "originalRequest": {
            "url": {
              "path": [
                "oauth",
                "token"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [],
              "variable": []
            },
            "header": [
              {
                "description": {
                  "content": "Added as a part of security scheme: bearer",
                  "type": "text/plain"
                },
                "key": "Authorization",
                "value": "Bearer <token>"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "POST",
            "body": {
              "mode": "urlencoded",
              "urlencoded": [
                {
                  "disabled": false,
                  "description": {
                    "content": "(Required) ",
                    "type": "text/plain"
                  },
                  "key": "grant_type",
                  "value": "<string>"
                },
                {
                  "disabled": false,
                  "description": {
                    "content": "(Required) ",
                    "type": "text/plain"
                  },
                  "key": "client_id",
                  "value": "<string>"
                },
                {
                  "disabled": false,
                  "description": {
                    "content": "(Required) ",
                    "type": "text/plain"
                  },
                  "key": "client_secret",
                  "value": "<string>"
                },
                {
                  "disabled": false,
                  "description": {
                    "content": "Space-delimited scopes such as menus:write stores:read orders:read.",
                    "type": "text/plain"
                  },
                  "key": "scope",
                  "value": "<string>"
                }
              ]
            }
          },
          "status": "OK",
          "code": 200,
          "header": [
            {
              "key": "Content-Type",
              "value": "application/json"
            }
          ],
          "body": "{\n  \"data\": {\n    \"access_token\": \"cu\",\n    \"token_type\": \"Bearer\",\n    \"expires_in\": 3600,\n    \"scope\": \"consectetur ullamco\"\n  }\n}",
          "cookie": [],
          "_postman_previewlanguage": "json"
        }
      ],
      "event": [],
      "protocolProfileBehavior": {
        "disableBodyPruning": true
      }
    },
    {
      "id": "c9fe607b-9ca3-4763-9c6d-ee631f540436",
      "name": "menus",
      "item": [
        {
          "id": "000ca4a9-42f4-4e29-8af3-ae385b806c07",
          "name": "List menus",
          "request": {
            "name": "List menus",
            "description": {},
            "url": {
              "path": [
                "menus"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [
                {
                  "disabled": false,
                  "key": "fulfillment_id",
                  "value": "<string>",
                  "description": "External fulfillment identifier. When set, filters to that fulfillment type."
                },
                {
                  "disabled": false,
                  "key": "store_id",
                  "value": "<string>",
                  "description": "External store identifier. Omit or pass _ for merchant-wide default (null store_id)."
                },
                {
                  "disabled": false,
                  "key": "channel_id",
                  "value": "<string>",
                  "description": "External channel identifier. Omit or pass _ for all channels (null channel_id)."
                },
                {
                  "disabled": false,
                  "key": "brand_id",
                  "value": "<string>",
                  "description": "External brand identifier. Alphanumeric characters, _, and - only. 1–64 characters."
                },
                {
                  "disabled": false,
                  "key": "menu_id",
                  "value": "<string>",
                  "description": "External menu identifier. When set, filters to one composed menu."
                }
              ],
              "variable": []
            },
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "GET",
            "auth": null
          },
          "response": [
            {
              "id": "13151739-e71f-4508-8a3a-a1e554e9077b",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "menus"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "key": "fulfillment_id",
                      "value": "<string>"
                    },
                    {
                      "key": "store_id",
                      "value": "<string>"
                    },
                    {
                      "key": "channel_id",
                      "value": "<string>"
                    },
                    {
                      "key": "brand_id",
                      "value": "<string>"
                    },
                    {
                      "key": "menu_id",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {}
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": [\n    {\n      \"id\": \"AiTpXr_FChn\",\n      \"name\": {\n        \"en_us\": \"Example\"\n      },\n      \"status\": \"INACTIVE\",\n      \"description\": {\n        \"en_us\": \"Example\"\n      },\n      \"metadata\": {\n        \"amet_40\": \"in aliqua\"\n      },\n      \"cms_template_id\": \"urn:uuid:cb3d1285-35f6-5fda-4e9d-8a4bc3e233f2\",\n      \"category_ids\": [\n        \"mkCE\",\n        \"i\"\n      ]\n    },\n    {\n      \"id\": \"DhHBeIGkS\",\n      \"name\": {\n        \"en_us\": \"Example\"\n      },\n      \"status\": \"INACTIVE\",\n      \"description\": {\n        \"en_us\": \"Example\"\n      },\n      \"metadata\": {\n        \"inc\": -2596609\n      },\n      \"cms_template_id\": \"cc10c039-ac31-4efa-2fb8-cd06f08d964a\",\n      \"category_ids\": [\n        \"0zxgELF_\",\n        \"pc7f\"\n      ]\n    }\n  ]\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        },
        {
          "id": "578264e2-bfb3-4f82-bb4c-dc36fbad3e13",
          "name": "Upsert menus",
          "request": {
            "name": "Upsert menus",
            "description": {},
            "url": {
              "path": [
                "menus"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [
                {
                  "disabled": false,
                  "key": "fulfillment_id",
                  "value": "<string>",
                  "description": "External fulfillment identifier used to scope the upsert. Omit or pass __ANY__ for all fulfillment types."
                },
                {
                  "disabled": false,
                  "key": "store_id",
                  "value": "<string>",
                  "description": "External store identifier used to scope the upsert."
                },
                {
                  "disabled": false,
                  "key": "channel_id",
                  "value": "<string>",
                  "description": "External channel identifier used to scope the upsert."
                },
                {
                  "disabled": false,
                  "key": "brand_id",
                  "value": "<string>",
                  "description": "Scope the upsert to menus for this brand. Omit or pass __ANY__ for the merchant-wide default."
                }
              ],
              "variable": []
            },
            "header": [
              {
                "disabled": false,
                "description": "Optional release identifier for this sync. Alphanumeric characters, _, and - only. 1–64 characters. When omitted, Fire spark generates a value like `v2026-07-10-21h`. Reuse the same value across scopes in a multi-scope rollout. Each scope accepts a given release only once while a sync is processing or after it succeeds; failed or cancelled syncs do not block retries.",
                "key": "x-release-id",
                "value": "<string>"
              },
              {
                "disabled": false,
                "description": "When true or 1, menu changes in the dashboard and via API will be overwritten; otherwise, existing changes persist.",
                "key": "x-force",
                "value": "<string>"
              },
              {
                "disabled": false,
                "description": "Defaults to true. When false or 0, the sync pauses before publishing so you can review and publish from the dashboard. With x-force true, the pause happens before override pruning as well.",
                "key": "x-publish",
                "value": "true"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "PUT",
            "auth": null,
            "body": {
              "mode": "raw",
              "raw": "{\n  \"style\": \"<string>\",\n  \"products\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": {\n        \"Loremb4\": \"<string>\",\n        \"ad_4\": \"<string>\",\n        \"culpa92a\": \"<string>\"\n      },\n      \"status\": \"<string>\",\n      \"pricing\": \"<object>\",\n      \"availability\": \"<object>\",\n      \"description\": {\n        \"reprehenderit_e6\": \"<string>\",\n        \"adipisicing0_\": \"<string>\"\n      },\n      \"image_url\": \"<uri>\",\n      \"cms_template_id\": \"<uuid>\",\n      \"bundled_items\": [\n        \"<object>\",\n        \"<object>\"\n      ],\n      \"tags\": {},\n      \"metadata\": {\n        \"aliquip3ca\": -38636140.31510492,\n        \"mollit_b68\": true\n      }\n    }\n  ],\n  \"categories\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": {\n        \"adipisicinga1\": \"<string>\",\n        \"doloref7\": \"<string>\"\n      },\n      \"status\": \"<string>\",\n      \"availability\": \"<object>\",\n      \"description\": {\n        \"nisibcc\": \"<string>\"\n      },\n      \"cms_template_id\": \"<uuid>\",\n      \"items\": [\n        {\n          \"type\": \"<string>\",\n          \"id\": \"<string>\"\n        },\n        {\n          \"type\": \"<string>\",\n          \"id\": \"<string>\"\n        }\n      ],\n      \"tags\": {},\n      \"metadata\": {\n        \"Duis_0\": false,\n        \"veniam_5d\": true\n      }\n    }\n  ],\n  \"menus\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": {\n        \"velit_3b\": \"<string>\",\n        \"ullamco__\": \"<string>\"\n      },\n      \"status\": \"<string>\",\n      \"description\": {\n        \"officia_18\": \"<string>\",\n        \"est23\": \"<string>\"\n      },\n      \"schedules\": [\n        \"<object>\",\n        \"<object>\"\n      ],\n      \"metadata\": {\n        \"culpa91_\": -50004021,\n        \"dolor9\": 133995.53222730756,\n        \"sint796\": -7052218.131141767\n      },\n      \"cms_template_id\": \"<uuid>\",\n      \"category_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ]\n    }\n  ],\n  \"modifier_groups\": [\n    {\n      \"id\": \"<string>\",\n      \"title\": {\n        \"culpa_6\": \"<string>\"\n      },\n      \"modifier_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"minimum_quantity\": \"<integer>\",\n      \"maximum_quantity\": \"<integer>\",\n      \"description\": {\n        \"reprehenderit63_\": \"<string>\",\n        \"sint7\": \"<string>\",\n        \"do_e2\": \"<string>\",\n        \"temporec0\": \"<string>\"\n      },\n      \"display_type\": \"<string>\",\n      \"charge_above_quantity\": \"<integer>\",\n      \"metadata\": {\n        \"cillumb\": 16148506,\n        \"ut7d\": false\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"title\": {\n        \"cupidatat_1\": \"<string>\",\n        \"Ut97\": \"<string>\"\n      },\n      \"modifier_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"minimum_quantity\": \"<integer>\",\n      \"maximum_quantity\": \"<integer>\",\n      \"description\": {\n        \"in2\": \"<string>\",\n        \"eiusmod8\": \"<string>\"\n      },\n      \"display_type\": \"<string>\",\n      \"charge_above_quantity\": \"<integer>\",\n      \"metadata\": {\n        \"occaecat_4b\": false\n      }\n    }\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [
            {
              "id": "0632f546-c608-4ff3-b083-f6219f6adcd8",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "menus"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "key": "fulfillment_id",
                      "value": "<string>"
                    },
                    {
                      "key": "store_id",
                      "value": "<string>"
                    },
                    {
                      "key": "channel_id",
                      "value": "<string>"
                    },
                    {
                      "key": "brand_id",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "disabled": false,
                    "description": "Optional release identifier for this sync. Alphanumeric characters, _, and - only. 1–64 characters. When omitted, Fire spark generates a value like `v2026-07-10-21h`. Reuse the same value across scopes in a multi-scope rollout. Each scope accepts a given release only once while a sync is processing or after it succeeds; failed or cancelled syncs do not block retries.",
                    "key": "x-release-id",
                    "value": "<string>"
                  },
                  {
                    "disabled": false,
                    "description": "When true or 1, menu changes in the dashboard and via API will be overwritten; otherwise, existing changes persist.",
                    "key": "x-force",
                    "value": "<string>"
                  },
                  {
                    "disabled": false,
                    "description": "Defaults to true. When false or 0, the sync pauses before publishing so you can review and publish from the dashboard. With x-force true, the pause happens before override pruning as well.",
                    "key": "x-publish",
                    "value": "true"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "PUT",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"style\": \"<string>\",\n  \"products\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": {\n        \"en_us\": \"Example\"\n      },\n      \"status\": \"<string>\",\n      \"pricing\": \"<object>\",\n      \"availability\": \"<object>\",\n      \"description\": {\n        \"en_us\": \"Example\"\n      },\n      \"image_url\": \"<uri>\",\n      \"cms_template_id\": \"<uuid>\",\n      \"bundled_items\": [\n        \"<object>\",\n        \"<object>\"\n      ],\n      \"tags\": {},\n      \"metadata\": {\n        \"aliqua_b9\": -15619378\n      }\n    }\n  ],\n  \"categories\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": {\n        \"en_us\": \"Example\"\n      },\n      \"status\": \"<string>\",\n      \"availability\": \"<object>\",\n      \"description\": {\n        \"en_us\": \"Example\"\n      },\n      \"cms_template_id\": \"<uuid>\",\n      \"items\": [\n        {\n          \"type\": \"<string>\",\n          \"id\": \"<string>\"\n        },\n        {\n          \"type\": \"<string>\",\n          \"id\": \"<string>\"\n        }\n      ],\n      \"tags\": {},\n      \"metadata\": {\n        \"exercitation_7\": \"in et pariatur nisi\",\n        \"exercitation65\": true,\n        \"Excepteur53f\": 27360035\n      }\n    }\n  ],\n  \"menus\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": {\n        \"en_us\": \"Example\"\n      },\n      \"status\": \"<string>\",\n      \"description\": {\n        \"en_us\": \"Example\"\n      },\n      \"schedules\": [\n        \"<object>\",\n        \"<object>\"\n      ],\n      \"metadata\": {\n        \"Excepteur_21d\": false\n      },\n      \"cms_template_id\": \"<uuid>\",\n      \"category_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ]\n    }\n  ],\n  \"modifier_groups\": [\n    {\n      \"id\": \"<string>\",\n      \"title\": {\n        \"en_us\": \"Example\"\n      },\n      \"modifier_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"minimum_quantity\": \"<integer>\",\n      \"maximum_quantity\": \"<integer>\",\n      \"description\": {\n        \"en_us\": \"Example\"\n      },\n      \"display_type\": \"<string>\",\n      \"charge_above_quantity\": \"<integer>\",\n      \"metadata\": {\n        \"sit6\": \"Excepteur dolor\",\n        \"occaecatbe\": false\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"title\": {\n        \"en_us\": \"Example\"\n      },\n      \"modifier_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"minimum_quantity\": \"<integer>\",\n      \"maximum_quantity\": \"<integer>\",\n      \"description\": {\n        \"en_us\": \"Example\"\n      },\n      \"display_type\": \"<string>\",\n      \"charge_above_quantity\": \"<integer>\",\n      \"metadata\": {\n        \"mollit_57\": -24918384.21022898,\n        \"ea6ea\": -289381.45905439556,\n        \"irure_c4\": -57968793.07942446\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": {\n        \"en_us\": \"Example\"\n      },\n      \"status\": \"<string>\",\n      \"description\": {\n        \"en_us\": \"Example\"\n      },\n      \"schedules\": [\n        \"<object>\",\n        \"<object>\"\n      ],\n      \"metadata\": {\n        \"voluptate__e\": 35937377.506944954\n      },\n      \"cms_template_id\": \"<uuid>\",\n      \"category_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ]\n    },\n    {\n      \"id\": \"<string>\",\n      \"name\": {\n        \"en_us\": \"Example\"\n      },\n      \"status\": \"<string>\",\n      \"description\": {\n        \"en_us\": \"Example\"\n      },\n      \"schedules\": [\n        \"<object>\",\n        \"<object>\"\n      ],\n      \"metadata\": {\n        \"nostrud1e\": \"aliqua aliquip vo\"\n      },\n      \"cms_template_id\": \"<uuid>\",\n      \"category_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ]\n    }\n  ]\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        },
        {
          "id": "1e486be2-3b44-45a1-8d0b-77aab0fbbff4",
          "name": "Update product",
          "request": {
            "name": "Update product",
            "description": {},
            "url": {
              "path": [
                "menus",
                "products",
                ":id"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [
                {
                  "disabled": false,
                  "key": "fulfillment_id",
                  "value": "<string>",
                  "description": "External fulfillment identifier. Omit for all fulfillment types."
                },
                {
                  "disabled": false,
                  "key": "store_id",
                  "value": "<string>",
                  "description": "External store identifier."
                },
                {
                  "disabled": false,
                  "key": "channel_id",
                  "value": "<string>",
                  "description": "External channel identifier."
                },
                {
                  "disabled": false,
                  "key": "brand_id",
                  "value": "<string>",
                  "description": "External brand identifier. Alphanumeric characters, _, and - only. 1–64 characters."
                },
                {
                  "disabled": false,
                  "key": "menu_id",
                  "value": "<string>",
                  "description": "External menu identifier. Omit to update every matching menu in the scope."
                }
              ],
              "variable": [
                {
                  "disabled": false,
                  "type": "any",
                  "value": "<string>",
                  "key": "id",
                  "description": "(Required) External product identifier."
                }
              ]
            },
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "PUT",
            "auth": null,
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": {\n    \"este\": \"<string>\",\n    \"consectetur14c\": \"<string>\"\n  },\n  \"description\": {\n    \"exercitation_b\": \"<string>\",\n    \"eiusmod_be\": \"<string>\"\n  },\n  \"image_url\": \"<uri>\",\n  \"cms_template_id\": \"<uuid>\",\n  \"status\": \"<string>\",\n  \"bundled_items\": [\n    \"<object>\",\n    \"<object>\"\n  ],\n  \"pricing\": \"<object>\",\n  \"availability\": \"<object>\",\n  \"metadata\": {\n    \"ut_4\": \"velit\",\n    \"cupidatat8\": true,\n    \"ullamco_3\": 55287691.4684003,\n    \"enim_2_3\": -8890318.302935585,\n    \"fugiat0\": -48896563\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [
            {
              "id": "34117148-c5c9-4431-9ac4-2b72d4a3770d",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "menus",
                    "products",
                    ":id"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "key": "fulfillment_id",
                      "value": "<string>"
                    },
                    {
                      "key": "store_id",
                      "value": "<string>"
                    },
                    {
                      "key": "channel_id",
                      "value": "<string>"
                    },
                    {
                      "key": "brand_id",
                      "value": "<string>"
                    },
                    {
                      "key": "menu_id",
                      "value": "<string>"
                    }
                  ],
                  "variable": [
                    {
                      "disabled": false,
                      "type": "any",
                      "value": "<string>",
                      "key": "id",
                      "description": "(Required) External product identifier."
                    }
                  ]
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "PUT",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"name\": {\n    \"en_us\": \"Example\"\n  },\n  \"description\": {\n    \"en_us\": \"Example\"\n  },\n  \"image_url\": \"<uri>\",\n  \"cms_template_id\": \"<uuid>\",\n  \"status\": \"<string>\",\n  \"bundled_items\": [\n    \"<object>\",\n    \"<object>\"\n  ],\n  \"pricing\": \"<object>\",\n  \"availability\": \"<object>\",\n  \"metadata\": {\n    \"eiusmodebf\": 99826324.270102\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"name\": {\n      \"en_us\": \"Example\"\n    },\n    \"status\": \"<string>\",\n    \"pricing\": \"<object>\",\n    \"availability\": \"<object>\",\n    \"description\": {\n      \"en_us\": \"Example\"\n    },\n    \"image_url\": \"<uri>\",\n    \"cms_template_id\": \"<uuid>\",\n    \"bundled_items\": [\n      \"<object>\",\n      \"<object>\"\n    ],\n    \"tags\": {},\n    \"metadata\": {\n      \"veniame\": \"sit cillum proident occaecat\",\n      \"culpa_b\": true\n    }\n  }\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        }
      ],
      "event": []
    },
    {
      "id": "9a9ceddb-da47-4881-a57f-f960ce606089",
      "name": "stores",
      "item": [
        {
          "id": "ee06e3aa-d376-407e-9c6d-c0b87f38575c",
          "name": "List stores",
          "request": {
            "name": "List stores",
            "description": {},
            "url": {
              "path": [
                "stores"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [
                {
                  "disabled": false,
                  "key": "brand_id",
                  "value": "<string>",
                  "description": "External brand identifier. Alphanumeric characters, _, and - only. 1–64 characters."
                },
                {
                  "disabled": false,
                  "key": "cursor",
                  "value": "<uuid>",
                  "description": "Opaque cursor from a previous response. Pass `pagination.next_cursor` to fetch the next page."
                },
                {
                  "disabled": false,
                  "key": "limit",
                  "value": "20",
                  "description": "Maximum number of stores to return. Defaults to 20."
                }
              ],
              "variable": []
            },
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "GET",
            "auth": null
          },
          "response": [
            {
              "id": "1be1abc1-1f8a-48e0-be25-8a1257f71a94",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "stores"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "key": "brand_id",
                      "value": "<string>"
                    },
                    {
                      "key": "cursor",
                      "value": "<uuid>"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {}
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": [\n    {\n      \"id\": \"pRx\",\n      \"name\": \"labore ea eiusmod in fugiat\",\n      \"status\": \"ACTIVE\",\n      \"timezone\": \"Duis fugiat officia dolore\",\n      \"contact\": {},\n      \"location\": {},\n      \"brand_id\": \"14OkUuiSP\",\n      \"channels\": {\n        \"tempor60\": \"id in aliqua\",\n        \"et_d\": -22000403\n      },\n      \"payments\": {},\n      \"cms_template_id\": \"be65cc0d-7216-c488-1fcd-9f22cb29535d\"\n    },\n    {\n      \"id\": \"y4eT\",\n      \"name\": \"irure dolor Lorem\",\n      \"status\": \"ACTIVE\",\n      \"timezone\": \"irure elit esse enim\",\n      \"contact\": {},\n      \"location\": {},\n      \"brand_id\": \"iL7E\",\n      \"channels\": {\n        \"in09\": 70335831.66953191,\n        \"officia_562\": false\n      },\n      \"payments\": {},\n      \"cms_template_id\": \"0203bfd3-03c5-0b5d-424b-23cb671ed79a\"\n    }\n  ],\n  \"pagination\": {\n    \"next_cursor\": \"4384586a-dfd1-7faa-1289-765a427bb85c\",\n    \"prev_cursor\": \"38bd6cef-bdee-c962-e8b6-6990f5576061\"\n  }\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        },
        {
          "id": "81ee2aee-773a-4a34-ab7f-6c425e0cfed7",
          "name": "Get store",
          "request": {
            "name": "Get store",
            "description": {},
            "url": {
              "path": [
                "stores",
                ":id"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [
                {
                  "disabled": false,
                  "key": "brand_id",
                  "value": "<string>",
                  "description": "Filter by brand. When set, returns 404 if the store does not belong to this brand."
                }
              ],
              "variable": [
                {
                  "disabled": false,
                  "type": "any",
                  "value": "<string>",
                  "key": "id",
                  "description": "(Required) External store identifier."
                }
              ]
            },
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "GET",
            "auth": null
          },
          "response": [
            {
              "id": "6147f0e8-5508-4783-9ed3-ff1caeab1068",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "stores",
                    ":id"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "key": "brand_id",
                      "value": "<string>"
                    }
                  ],
                  "variable": [
                    {
                      "disabled": false,
                      "type": "any",
                      "value": "<string>",
                      "key": "id",
                      "description": "(Required) External store identifier."
                    }
                  ]
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {}
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": {\n    \"id\": \"0-mdJFR\",\n    \"name\": \"veniam Duis\",\n    \"status\": \"ACTIVE\",\n    \"timezone\": \"commodo officia\",\n    \"contact\": {},\n    \"location\": {},\n    \"brand_id\": \"O_Zkl\",\n    \"channels\": {\n      \"veniam0bd\": false,\n      \"deserunt_1\": 57773947.99220672\n    },\n    \"payments\": {},\n    \"cms_template_id\": \"77c1845e-55ab-a2ff-b712-aa4984d5e252\"\n  }\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        }
      ],
      "event": []
    },
    {
      "id": "e15bc843-f46f-44eb-a1a7-0570ff086145",
      "name": "channels",
      "item": [
        {
          "id": "daa95132-fe22-4add-a304-0132d3a9e8af",
          "name": "List channels",
          "request": {
            "name": "List channels",
            "description": {},
            "url": {
              "path": [
                "channels"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [],
              "variable": []
            },
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "GET",
            "auth": null
          },
          "response": [
            {
              "id": "63df4b0d-a379-4064-bdb4-6af37ff6adfd",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "channels"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {}
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": [\n    {\n      \"id\": \"1D\",\n      \"name\": \"elit mollit\",\n      \"type\": \"AGGREGATOR\",\n      \"status\": \"INACTIVE\",\n      \"cms_template_id\": \"urn:uuid:a9d38625-0469-58db-9a01-e31c35e9916f\"\n    },\n    {\n      \"id\": \"qMn\",\n      \"name\": \"qui mollit \",\n      \"type\": \"APP\",\n      \"status\": \"INACTIVE\",\n      \"cms_template_id\": \"31f6302d-21c2-2f4a-3102-947dc07779b3\"\n    }\n  ]\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        },
        {
          "id": "057f5a1d-694f-4199-8bbb-3390fc46dcf4",
          "name": "Get channel",
          "request": {
            "name": "Get channel",
            "description": {},
            "url": {
              "path": [
                "channels",
                ":id"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [],
              "variable": [
                {
                  "disabled": false,
                  "type": "any",
                  "value": "<string>",
                  "key": "id",
                  "description": "(Required) External channel identifier."
                }
              ]
            },
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "GET",
            "auth": null
          },
          "response": [
            {
              "id": "19b68717-3493-478e-98b1-b4d46760e524",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "channels",
                    ":id"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "disabled": false,
                      "type": "any",
                      "value": "<string>",
                      "key": "id",
                      "description": "(Required) External channel identifier."
                    }
                  ]
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {}
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": {\n    \"id\": \"mELkAeOfWsM\",\n    \"name\": \"occaecat magna sed\",\n    \"type\": \"KIOSK\",\n    \"status\": \"ACTIVE\",\n    \"cms_template_id\": \"urn:uuid:eb5eea6b-2e24-1be0-f98f-b22a29059d00\"\n  }\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        }
      ],
      "event": []
    },
    {
      "id": "6c7cfa71-d995-4573-b0a7-eb9b298de30e",
      "name": "brands",
      "item": [
        {
          "id": "b8228f62-577b-44d9-a6ea-75bfa9374b83",
          "name": "List brands",
          "request": {
            "name": "List brands",
            "description": {},
            "url": {
              "path": [
                "brands"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [],
              "variable": []
            },
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "GET",
            "auth": null
          },
          "response": [
            {
              "id": "33cde587-e494-48c7-a293-e8d88f312c64",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "brands"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {}
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": [\n    {\n      \"id\": \"I8p\",\n      \"uid\": \"urn:uuid:bc991074-1c47-80ac-6b60-2cbaf6f68a57\",\n      \"organization_id\": \"urn:uuid:a80d6c45-9a1f-c7dc-272e-3078c2e593a9\",\n      \"merchant_id\": \"urn:uuid:664dc7ec-31e8-30fc-276d-70940bf2e35e\",\n      \"name\": \"nostrud Lorem ullamco\",\n      \"status\": \"ACTIVE\",\n      \"cms_template_id\": \"f87563b0-f5cc-85bc-8230-06e870f73536\",\n      \"cms\": {\n        \"Duis_7_\": -10807373\n      }\n    },\n    {\n      \"id\": \"UqkS\",\n      \"uid\": \"urn:uuid:4f642f1d-7f3c-d9d4-420e-fe46d828a3fb\",\n      \"organization_id\": \"10f827a5-481a-a15d-06ac-f84dc8238b4b\",\n      \"merchant_id\": \"urn:uuid:8b685432-f17a-e8b7-ecb3-2f3e0498b645\",\n      \"name\": \"ullamco aliquip laboris dolor eu\",\n      \"status\": \"ACTIVE\",\n      \"cms_template_id\": \"fab33366-8f3a-e0da-306e-c46958a33ffc\",\n      \"cms\": {\n        \"in_1\": true\n      }\n    }\n  ]\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        },
        {
          "id": "4b26752a-d751-4740-b940-41baefa8d7cd",
          "name": "Get brand",
          "request": {
            "name": "Get brand",
            "description": {},
            "url": {
              "path": [
                "brands",
                ":id"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [],
              "variable": [
                {
                  "disabled": false,
                  "type": "any",
                  "value": "<string>",
                  "key": "id",
                  "description": "(Required) External brand identifier."
                }
              ]
            },
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "GET",
            "auth": null
          },
          "response": [
            {
              "id": "54e06a8d-dd31-4cf8-906a-1dfeb91e1a03",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "brands",
                    ":id"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "disabled": false,
                      "type": "any",
                      "value": "<string>",
                      "key": "id",
                      "description": "(Required) External brand identifier."
                    }
                  ]
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {}
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": {\n    \"id\": \"WPqc7k\",\n    \"uid\": \"urn:uuid:399bd37e-44d1-52ad-3454-bce220f65d61\",\n    \"organization_id\": \"urn:uuid:f222cf67-35c8-154a-9dc3-710febdf49a0\",\n    \"merchant_id\": \"d226053c-2c4a-da71-b443-da7ec29bc2e0\",\n    \"name\": \"elit cillu\",\n    \"status\": \"ACTIVE\",\n    \"cms_template_id\": \"520a0cb6-c692-7e67-34bd-1232476c2e84\",\n    \"cms\": {\n      \"velit_0\": \"esse Excepteur laboris ut\",\n      \"ute9d\": false\n    }\n  }\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        }
      ],
      "event": []
    },
    {
      "id": "14c5a5ff-81f0-44bb-96ae-dc14e4b43c43",
      "name": "fulfillment",
      "item": [
        {
          "id": "3e00377e-6073-4556-98cd-191d49ab6d7d",
          "name": "List fulfillment options",
          "request": {
            "name": "List fulfillment options",
            "description": {},
            "url": {
              "path": [
                "fulfillment"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [],
              "variable": []
            },
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "GET",
            "auth": null
          },
          "response": [
            {
              "id": "4469ce1f-3791-486c-8483-c47f661c27da",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "fulfillment"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {}
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": [\n    {\n      \"id\": \"7k3V\",\n      \"name\": {\n        \"en_us\": \"Example\"\n      },\n      \"type\": \"occaecat qui\",\n      \"status\": \"ACTIVE\"\n    },\n    {\n      \"id\": \"5\",\n      \"name\": {\n        \"en_us\": \"Example\"\n      },\n      \"type\": \"minim iru\",\n      \"status\": \"INACTIVE\"\n    }\n  ]\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        },
        {
          "id": "427632db-72b3-46b8-bbb0-bd2a1997dcb6",
          "name": "Get fulfillment option",
          "request": {
            "name": "Get fulfillment option",
            "description": {},
            "url": {
              "path": [
                "fulfillment",
                ":id"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [],
              "variable": [
                {
                  "disabled": false,
                  "type": "any",
                  "value": "<string>",
                  "key": "id",
                  "description": "(Required) External fulfillment identifier."
                }
              ]
            },
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "GET",
            "auth": null
          },
          "response": [
            {
              "id": "830e8748-fe17-454b-adfe-25e73044a892",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "fulfillment",
                    ":id"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "disabled": false,
                      "type": "any",
                      "value": "<string>",
                      "key": "id",
                      "description": "(Required) External fulfillment identifier."
                    }
                  ]
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {}
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": {\n    \"id\": \"Kd\",\n    \"name\": {\n      \"en_us\": \"Example\"\n    },\n    \"type\": \"tempor proident consectetur\",\n    \"status\": \"INACTIVE\"\n  }\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        }
      ],
      "event": []
    },
    {
      "id": "396519c6-6d2f-4893-968d-73427f37ae5d",
      "name": "orders/{id}",
      "item": [
        {
          "id": "421e798b-1a18-4a29-82c9-95bcf2ad3ab4",
          "name": "Get order",
          "request": {
            "name": "Get order",
            "description": {},
            "url": {
              "path": [
                "orders",
                ":id"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [],
              "variable": [
                {
                  "disabled": false,
                  "type": "any",
                  "value": "<string>",
                  "key": "id",
                  "description": "(Required) External order identifier."
                }
              ]
            },
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "GET",
            "auth": null
          },
          "response": [
            {
              "id": "cf789498-fccc-45f5-9968-ab3cc5953ab4",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "orders",
                    ":id"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "disabled": false,
                      "type": "any",
                      "value": "<string>",
                      "key": "id",
                      "description": "(Required) External order identifier."
                    }
                  ]
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {}
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": {\n    \"ipsum1\": -65929116.11675391\n  }\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        },
        {
          "id": "ddb78a40-cb8f-45a2-8624-dd631f1e4f8f",
          "name": "Inject order",
          "request": {
            "name": "Inject order",
            "description": {},
            "url": {
              "path": [
                "orders",
                ":id"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [],
              "variable": [
                {
                  "disabled": false,
                  "type": "any",
                  "value": "<string>",
                  "key": "id",
                  "description": "(Required) External order identifier."
                }
              ]
            },
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "POST",
            "auth": null,
            "body": {
              "mode": "raw",
              "raw": "{\n  \"veniam_66\": false\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [
            {
              "id": "74e53233-7f40-4fef-b3af-a8ef8e0c299a",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "orders",
                    ":id"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "disabled": false,
                      "type": "any",
                      "value": "<string>",
                      "key": "id",
                      "description": "(Required) External order identifier."
                    }
                  ]
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"aliqua_c0_\": \"in\",\n  \"culpa_f\": -43033272,\n  \"ut_6f3\": 78010828.60067964\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": {\n    \"ipsum1\": -65929116.11675391\n  }\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        },
        {
          "id": "577517bc-4400-4a61-a75e-42d5fb8fe22d",
          "name": "Update order status",
          "request": {
            "name": "Update order status",
            "description": {},
            "url": {
              "path": [
                "orders",
                ":id",
                "status"
              ],
              "host": [
                "{{baseUrl}}"
              ],
              "query": [],
              "variable": [
                {
                  "disabled": false,
                  "type": "any",
                  "value": "<string>",
                  "key": "id",
                  "description": "(Required) External order identifier."
                }
              ]
            },
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "method": "PATCH",
            "auth": null,
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [
            {
              "id": "59d5292c-47c5-4118-a20c-e92b6b7db473",
              "name": "Ok",
              "originalRequest": {
                "url": {
                  "path": [
                    "orders",
                    ":id",
                    "status"
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "disabled": false,
                      "type": "any",
                      "value": "<string>",
                      "key": "id",
                      "description": "(Required) External order identifier."
                    }
                  ]
                },
                "header": [
                  {
                    "description": {
                      "content": "Added as a part of security scheme: bearer",
                      "type": "text/plain"
                    },
                    "key": "Authorization",
                    "value": "Bearer <token>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "PATCH",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"status\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "status": "OK",
              "code": 200,
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "body": "{\n  \"data\": {\n    \"ipsum1\": -65929116.11675391\n  }\n}",
              "cookie": [],
              "_postman_previewlanguage": "json"
            }
          ],
          "event": [],
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          }
        }
      ],
      "event": []
    }
  ],
  "event": [],
  "variable": [
    {
      "type": "string",
      "value": "https://firespark.cloud/api/integrations/v1",
      "key": "baseUrl"
    }
  ],
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{bearerToken}}"
      }
    ]
  },
  "info": {
    "_postman_id": "a9ead0cb-8303-4bcc-87d4-88f2bcb2e80f",
    "name": "Fire spark Integrations API",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "description": {
      "content": "POS and RMS integration endpoints for Fire spark.",
      "type": "text/plain"
    }
  }
}
