{
  "_type": "export",
  "__export_format": 4,
  "__export_date": "2026-01-18T11:10:45Z",
  "__export_source": "insomnia.desktop.app:v2023.5.8",
  "resources": [
    {
      "_id": "wrk_g3nretailstack_minflow",
      "_type": "workspace",
      "name": "G3N Retail Stack - Minimum Viable Flow",
      "description": "End-to-end flow aligned to /common/minimum-viable-flow.html.",
      "scope": "collection"
    },
    {
      "_id": "fld_minimum_viable_flow",
      "_type": "request_group",
      "parentId": "wrk_g3nretailstack_minflow",
      "name": "Minimum Viable Flow"
    },
    {
      "_id": "env_minimum_viable_flow",
      "_type": "environment",
      "parentId": "wrk_g3nretailstack_minflow",
      "name": "Base Environment",
      "data": {
        "api_base": "https://api.g3nretailstack.com",
        "email": "user@example.com",
        "passcode": "Passw0rd!123",
        "orgcode": "ACME",
        "invite_code": "INV123",
        "session_guid": "",
        "user_guid": "",
        "org_guid": "",
        "org_rev": "",
        "physical_guid": "",
        "legal_guid": "",
        "logical_guid": "",
        "channel_guid": "",
        "channel_rev": "",
        "division_id": "",
        "division_rev": "",
        "department_id": "",
        "department_rev": "",
        "category_id": "",
        "category_rev": "",
        "vendor_id": "",
        "vendor_rev": "",
        "manufacturer_id": "",
        "manufacturer_rev": "",
        "style_id": "",
        "style_rev": "",
        "variant_id": "",
        "variant_rev": "",
        "run_id": "",
        "run_rev": ""
      }
    },
    {
      "_id": "req_usm_session_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "USM - Session Create",
      "method": "POST",
      "url": "{{ _.api_base }}/usm/session/create",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"email\": \"{{ _.email }}\",\n  \"passcode\": \"{{ _.passcode }}\",\n  \"caption\": \"insomnia\",\n  \"session_label\": \"insomnia\",\n  \"reason\": \"login\"\n}"
      }
    },
    {
      "_id": "req_ofm_org_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "OFM - Org Create",
      "method": "POST",
      "url": "{{ _.api_base }}/ofm/org/create",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"orgcode\": \"{{ _.orgcode }}\",\n  \"invitation_code\": \"{{ _.invite_code }}\",\n  \"user_guid\": \"{{ _.user_guid }}\",\n  \"caption\": \"Acme HQ\"\n}"
      }
    },
    {
      "_id": "req_ofm_org_status_operator",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "OFM - Org Status Set (operator-only placeholder)",
      "method": "POST",
      "url": "https://lambda.us-east-1.amazonaws.com/2015-03-31/functions/ofm_orgstatusset/invocations",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        }
      ],
      "description": "Operator-only direct Lambda (IAM/SigV4 required). This is NOT an API Gateway route. Use AWS CLI/SDK to invoke.",
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"org_guid\": \"{{ _.org_guid }}\",\n  \"status\": \"verified\",\n  \"expected_revision\": \"{{ _.org_rev }}\",\n  \"reason\": \"onboarding\"\n}"
      }
    },
    {
      "_id": "req_ofm_physical_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "OFM - Facility Physical Create",
      "method": "POST",
      "url": "{{ _.api_base }}/ofm/facility/physical/create",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"org_guid\": \"{{ _.org_guid }}\",\n  \"code\": \"PHYS1\",\n  \"caption\": \"HQ\",\n  \"address\": {\n    \"street\": \"1 Main St\",\n    \"city\": \"Austin\",\n    \"region\": \"TX\",\n    \"country\": \"US\"\n  },\n  \"phone\": \"+1-555-0100\"\n}"
      }
    },
    {
      "_id": "req_ofm_legal_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "OFM - Facility Legal Create",
      "method": "POST",
      "url": "{{ _.api_base }}/ofm/facility/legal/create",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"org_guid\": \"{{ _.org_guid }}\",\n  \"code\": \"LEG1\",\n  \"caption\": \"Acme LLC\",\n  \"address\": {\n    \"street\": \"1 Main St\",\n    \"city\": \"Austin\",\n    \"region\": \"TX\",\n    \"country\": \"US\"\n  }\n}"
      }
    },
    {
      "_id": "req_ofm_logical_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "OFM - Facility Logical Create",
      "method": "POST",
      "url": "{{ _.api_base }}/ofm/facility/logical/create",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"org_guid\": \"{{ _.org_guid }}\",\n  \"code\": \"LOG1\",\n  \"caption\": \"Online DC\",\n  \"physical_guid\": \"{{ _.physical_guid }}\",\n  \"legal_guid\": \"{{ _.legal_guid }}\"\n}"
      }
    },
    {
      "_id": "req_ofm_channel_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "OFM - Sales Channel Create",
      "method": "POST",
      "url": "{{ _.api_base }}/ofm/sales-channel/create",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"org_guid\": \"{{ _.org_guid }}\",\n  \"logical_guid\": \"{{ _.logical_guid }}\",\n  \"channel_code\": \"WEB\",\n  \"market_code\": \"US\",\n  \"locale_codes\": [\n    \"en-US\"\n  ],\n  \"default_locale_code\": \"en-US\"\n}"
      }
    },
    {
      "_id": "req_ofm_channel_activate",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "OFM - Sales Channel Activate",
      "method": "POST",
      "url": "{{ _.api_base }}/ofm/sales-channel/status",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"org_guid\": \"{{ _.org_guid }}\",\n  \"channel_guid\": \"{{ _.channel_guid }}\",\n  \"status\": \"active\",\n  \"expected_revision\": \"{{ _.channel_rev }}\",\n  \"reason\": \"go-live\"\n}"
      }
    },
    {
      "_id": "req_pvm_division_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Division Create",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/division",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"code\": \"DIV1\",\n  \"caption\": \"Division 1\"\n}"
      }
    },
    {
      "_id": "req_pvm_division_activate",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Division Activate",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/division/status",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"division_id\": \"{{ _.division_id }}\",\n  \"status\": \"active\",\n  \"expected_revision\": \"{{ _.division_rev }}\"\n}"
      }
    },
    {
      "_id": "req_pvm_department_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Department Create",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/department",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"division_id\": \"{{ _.division_id }}\",\n  \"code\": \"DEPT1\",\n  \"caption\": \"Department 1\"\n}"
      }
    },
    {
      "_id": "req_pvm_department_activate",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Department Activate",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/department/status",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"department_id\": \"{{ _.department_id }}\",\n  \"status\": \"active\",\n  \"expected_revision\": \"{{ _.department_rev }}\"\n}"
      }
    },
    {
      "_id": "req_pvm_category_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Category Create",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/category",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"department_id\": \"{{ _.department_id }}\",\n  \"code\": \"CAT1\",\n  \"caption\": \"Category 1\"\n}"
      }
    },
    {
      "_id": "req_pvm_category_activate",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Category Activate",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/category/status",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"category_id\": \"{{ _.category_id }}\",\n  \"status\": \"active\",\n  \"expected_revision\": \"{{ _.category_rev }}\"\n}"
      }
    },
    {
      "_id": "req_pvm_vendor_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Vendor Create",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/vendor",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"code\": \"VEND1\",\n  \"caption\": \"Vendor 1\"\n}"
      }
    },
    {
      "_id": "req_pvm_vendor_verify",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Vendor Verify",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/vendor/status",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"vendor_id\": \"{{ _.vendor_id }}\",\n  \"status\": \"verified\",\n  \"expected_revision\": \"{{ _.vendor_rev }}\"\n}"
      }
    },
    {
      "_id": "req_pvm_manufacturer_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Manufacturer Create",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/manufacturer",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"code\": \"MFG1\",\n  \"caption\": \"Manufacturer 1\"\n}"
      }
    },
    {
      "_id": "req_pvm_manufacturer_verify",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Manufacturer Verify",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/manufacturer/status",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"manufacturer_id\": \"{{ _.manufacturer_id }}\",\n  \"status\": \"verified\",\n  \"expected_revision\": \"{{ _.manufacturer_rev }}\"\n}"
      }
    },
    {
      "_id": "req_pvm_style_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Style Create",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/style",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"code\": \"STYLE1\",\n  \"category_id\": \"{{ _.category_id }}\",\n  \"vendor_ids\": [\n    \"{{ _.vendor_id }}\"\n  ],\n  \"manufacturer_ids\": [\n    \"{{ _.manufacturer_id }}\"\n  ],\n  \"vendor_primary\": \"{{ _.vendor_id }}\",\n  \"manufacturer_primary\": \"{{ _.manufacturer_id }}\"\n}"
      }
    },
    {
      "_id": "req_pvm_style_activate",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Style Activate",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/style/status",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"style_id\": \"{{ _.style_id }}\",\n  \"status\": \"active\",\n  \"expected_revision\": \"{{ _.style_rev }}\"\n}"
      }
    },
    {
      "_id": "req_pvm_variant_create",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Variant Create",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/variant",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"style_id\": \"{{ _.style_id }}\",\n  \"selections\": [],\n  \"code\": \"VAR1\"\n}"
      }
    },
    {
      "_id": "req_pvm_variant_activate",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Variant Activate",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/variant/status",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"style_id\": \"{{ _.style_id }}\",\n  \"variant_id\": \"{{ _.variant_id }}\",\n  \"status\": \"active\",\n  \"expected_revision\": \"{{ _.variant_rev }}\"\n}"
      }
    },
    {
      "_id": "req_pvm_identifier_add",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PVM - Identifier Add (SKU)",
      "method": "POST",
      "url": "{{ _.api_base }}/pvm/identifier/add",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"style_id\": \"{{ _.style_id }}\",\n  \"variant_id\": \"{{ _.variant_id }}\",\n  \"type\": \"sku\",\n  \"value\": \"SKU-001\"\n}"
      }
    },
    {
      "_id": "req_pmc_publish_start",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PMC - Publish Run Start",
      "method": "POST",
      "url": "{{ _.api_base }}/pmc/publish/run/start",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"style_id\": \"{{ _.style_id }}\",\n  \"variant_id\": \"{{ _.variant_id }}\",\n  \"channel_guid\": \"{{ _.channel_guid }}\",\n  \"reason\": \"initial publish\"\n}"
      }
    },
    {
      "_id": "req_pmc_publish_step",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PMC - Publish Run Step",
      "method": "POST",
      "url": "{{ _.api_base }}/pmc/publish/run/step",
      "headers": [
        {
          "name": "content-type",
          "value": "application/json"
        },
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"run_id\": \"{{ _.run_id }}\",\n  \"expected_revision\": \"{{ _.run_rev }}\"\n}"
      }
    },
    {
      "_id": "req_pmc_product_get",
      "_type": "request",
      "parentId": "fld_minimum_viable_flow",
      "name": "PMC - Product Get",
      "method": "GET",
      "url": "{{ _.api_base }}/pmc/product/get?variant_id={{ _.variant_id }}&channel_guid={{ _.channel_guid }}",
      "headers": [
        {
          "name": "x-orgcode",
          "value": "{{ _.orgcode }}"
        },
        {
          "name": "x-session-guid",
          "value": "{{ _.session_guid }}"
        }
      ]
    }
  ]
}
