{
  "info": {
    "name": "MyHoreca Licensing Vendor Partner API",
    "description": "Vendor Partner (Management subset) collection (Wave 71.2). Service-account Bearer auth. No live credentials. Set managementBaseUrl; replace serviceAccountToken locally. Not Runtime; not Platform Admin; not PBL billing.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    {
      "key": "managementBaseUrl",
      "value": "https://management-api.example.com"
    },
    {
      "key": "serviceAccountToken",
      "value": "REPLACE_ME_LOCALLY"
    },
    {
      "key": "correlationId",
      "value": "00000000-0000-7000-8000-000000000002"
    },
    {
      "key": "idempotencyKey",
      "value": "00000000-0000-7000-8000-000000000003"
    },
    {
      "key": "customerSubscriptionId",
      "value": "00000000-0000-7000-8000-000000000004"
    },
    {
      "key": "expectedPrimaryMaterialRefId",
      "value": "00000000-0000-7000-8000-000000000005"
    }
  ],
  "item": [
    {
      "name": "GetHealth",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/health",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "health"
          ]
        },
        "description": "GetHealth — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "GetReady",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/ready",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "ready"
          ]
        },
        "description": "GetReady — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "IssueSubscriptionLicense",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          },
          {
            "key": "Idempotency-Key",
            "value": "{{idempotencyKey}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/subscription-issues",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "subscription-issues"
          ]
        },
        "description": "Issue a License from a Customer Subscription — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customerSubscriptionId\": \"{{customerSubscriptionId}}\",\n  \"correlationId\": \"{{correlationId}}\"\n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GetCustomerAggregate",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/aggregate",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "aggregate"
          ]
        },
        "description": "Get a customer profile and its License summaries — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "UpdateCustomerAggregateProfile",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/aggregate",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "aggregate"
          ]
        },
        "description": "Replace a customer profile — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GetCustomerLicenseTable",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/licenses/table",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "licenses",
            "table"
          ]
        },
        "description": "Get the enriched License table for a customer — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "GetCustomerLicenseIssueCandidates",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/license-issue-candidates",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "license-issue-candidates"
          ]
        },
        "description": "Get unoccupied License issue candidates for a customer — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "IssueCustomerSubscriptionLicense",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/license-issues",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "license-issues"
          ]
        },
        "description": "Issue a License from a customer Subscription — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "RevokeCustomerLicense",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/licenses/{licenseId}/revoke",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "licenses",
            "{licenseId}",
            "revoke"
          ]
        },
        "description": "Revoke a License in the exact customer scope — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ArchiveCustomerLicense",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/licenses/{licenseId}/archive",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "licenses",
            "{licenseId}",
            "archive"
          ]
        },
        "description": "Archive a License in the exact customer scope — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "RotateCustomerLicenseKey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          },
          {
            "key": "Idempotency-Key",
            "value": "{{idempotencyKey}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/licenses/{licenseId}/key/rotations",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "licenses",
            "{licenseId}",
            "key",
            "rotations"
          ]
        },
        "description": "Rotate the exact Customer License key — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expectedPrimaryMaterialRefId\": \"{{expectedPrimaryMaterialRefId}}\"\n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "RotateLicenseKey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          },
          {
            "key": "Idempotency-Key",
            "value": "{{idempotencyKey}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/key/rotate",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "key",
            "rotate"
          ]
        },
        "description": "Rotate a License key — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expectedPrimaryMaterialRefId\": \"{{expectedPrimaryMaterialRefId}}\"\n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/service-accounts",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/service-accounts",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "service-accounts"
          ]
        },
        "description": "GET /api/v1/service-accounts — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/service-accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/service-accounts",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "service-accounts"
          ]
        },
        "description": "POST /api/v1/service-accounts — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/service-accounts/{serviceAccountId}/credentials/rotate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/service-accounts/{serviceAccountId}/credentials/rotate",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "service-accounts",
            "{serviceAccountId}",
            "credentials",
            "rotate"
          ]
        },
        "description": "POST /api/v1/service-accounts/{serviceAccountId}/credentials/rotate — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/service-accounts/{serviceAccountId}/credentials/{credentialId}/revoke",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/service-accounts/{serviceAccountId}/credentials/{credentialId}/revoke",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "service-accounts",
            "{serviceAccountId}",
            "credentials",
            "{credentialId}",
            "revoke"
          ]
        },
        "description": "POST /api/v1/service-accounts/{serviceAccountId}/credentials/{credentialId}/revoke — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/service-accounts/{serviceAccountId}/disable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/service-accounts/{serviceAccountId}/disable",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "service-accounts",
            "{serviceAccountId}",
            "disable"
          ]
        },
        "description": "POST /api/v1/service-accounts/{serviceAccountId}/disable — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/service-accounts/me",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/service-accounts/me",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "service-accounts",
            "me"
          ]
        },
        "description": "GET /api/v1/service-accounts/me — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "GET /api/v1/licenses/overview",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/overview",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "overview"
          ]
        },
        "description": "GET /api/v1/licenses/overview — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/licenses/bulk/create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/bulk/create",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "bulk",
            "create"
          ]
        },
        "description": "POST /api/v1/licenses/bulk/create — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/licenses/bulk/suspend",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/bulk/suspend",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "bulk",
            "suspend"
          ]
        },
        "description": "POST /api/v1/licenses/bulk/suspend — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/licenses/bulk/revoke",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/bulk/revoke",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "bulk",
            "revoke"
          ]
        },
        "description": "Compatibility bulk revoke. revokedByActorId is deprecated, accepted but ignored; the actor comes only from the authenticated Management context. Each first-time item commits LIC/AUD/MSG atomically. — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/licenses",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses"
          ]
        },
        "description": "GET /api/v1/licenses — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/licenses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses"
          ]
        },
        "description": "POST /api/v1/licenses — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/licenses/{licenseId}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}"
          ]
        },
        "description": "GET /api/v1/licenses/{licenseId} — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/licenses/{licenseId}/assign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/assign",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "assign"
          ]
        },
        "description": "POST /api/v1/licenses/{licenseId}/assign — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "PUT /api/v1/licenses/{licenseId}/customer-site",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/customer-site",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "customer-site"
          ]
        },
        "description": "PUT /api/v1/licenses/{licenseId}/customer-site — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/licenses/{licenseId}/extend",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/extend",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "extend"
          ]
        },
        "description": "POST /api/v1/licenses/{licenseId}/extend — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/licenses/{licenseId}/suspend",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/suspend",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "suspend"
          ]
        },
        "description": "POST /api/v1/licenses/{licenseId}/suspend — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/licenses/{licenseId}/revoke",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/revoke",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "revoke"
          ]
        },
        "description": "Compatibility revoke. revokedByActorId is deprecated, accepted but ignored; the actor comes only from the authenticated Management context. LIC/AUD/MSG commit atomically before the response. — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/licenses/{licenseId}/entitlements",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/entitlements",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "entitlements"
          ]
        },
        "description": "GET /api/v1/licenses/{licenseId}/entitlements — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/licenses/{licenseId}/entitlements",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/entitlements",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "entitlements"
          ]
        },
        "description": "POST /api/v1/licenses/{licenseId}/entitlements — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/licenses/{licenseId}/custom-data",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/custom-data",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "custom-data"
          ]
        },
        "description": "GET /api/v1/licenses/{licenseId}/custom-data — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "PUT /api/v1/licenses/{licenseId}/custom-data",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/custom-data",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "custom-data"
          ]
        },
        "description": "PUT /api/v1/licenses/{licenseId}/custom-data — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "PUT /api/v1/licenses/{licenseId}/validity-mode",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/validity-mode",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "validity-mode"
          ]
        },
        "description": "PUT /api/v1/licenses/{licenseId}/validity-mode — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/licenses/{licenseId}/bind-policy-plan",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/bind-policy-plan",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "bind-policy-plan"
          ]
        },
        "description": "POST /api/v1/licenses/{licenseId}/bind-policy-plan — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/licenses/{licenseId}/history",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/history",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "history"
          ]
        },
        "description": "GET /api/v1/licenses/{licenseId}/history — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "GET /api/v1/licenses/{licenseId}/key",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/key",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "key"
          ]
        },
        "description": "GET /api/v1/licenses/{licenseId}/key — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/licenses/{licenseId}/key/issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/licenses/{licenseId}/key/issue",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "licenses",
            "{licenseId}",
            "key",
            "issue"
          ]
        },
        "description": "POST /api/v1/licenses/{licenseId}/key/issue — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/devices",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/devices",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "devices"
          ]
        },
        "description": "GET /api/v1/devices — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/devices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/devices",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "devices"
          ]
        },
        "description": "POST /api/v1/devices — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/devices/{deviceId}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/devices/{deviceId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "devices",
            "{deviceId}"
          ]
        },
        "description": "GET /api/v1/devices/{deviceId} — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/devices/{deviceId}/evidence",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/devices/{deviceId}/evidence",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "devices",
            "{deviceId}",
            "evidence"
          ]
        },
        "description": "POST /api/v1/devices/{deviceId}/evidence — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/devices/{deviceId}/installation-keys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/devices/{deviceId}/installation-keys",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "devices",
            "{deviceId}",
            "installation-keys"
          ]
        },
        "description": "POST /api/v1/devices/{deviceId}/installation-keys — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/devices/{deviceId}/fingerprint/signals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/devices/{deviceId}/fingerprint/signals",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "devices",
            "{deviceId}",
            "fingerprint",
            "signals"
          ]
        },
        "description": "POST /api/v1/devices/{deviceId}/fingerprint/signals — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/devices/{deviceId}/fingerprint/assess",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/devices/{deviceId}/fingerprint/assess",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "devices",
            "{deviceId}",
            "fingerprint",
            "assess"
          ]
        },
        "description": "POST /api/v1/devices/{deviceId}/fingerprint/assess — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/devices/{deviceId}/activate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/devices/{deviceId}/activate",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "devices",
            "{deviceId}",
            "activate"
          ]
        },
        "description": "POST /api/v1/devices/{deviceId}/activate — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/devices/{deviceId}/trials",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/devices/{deviceId}/trials",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "devices",
            "{deviceId}",
            "trials"
          ]
        },
        "description": "POST /api/v1/devices/{deviceId}/trials — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/devices/transfers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/devices/transfers",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "devices",
            "transfers"
          ]
        },
        "description": "POST /api/v1/devices/transfers — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/devices/transfers/{transferId}/complete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/devices/transfers/{transferId}/complete",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "devices",
            "transfers",
            "{transferId}",
            "complete"
          ]
        },
        "description": "POST /api/v1/devices/transfers/{transferId}/complete — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/commerce/price-books",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/price-books",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "price-books"
          ]
        },
        "description": "GET /api/v1/commerce/price-books — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/commerce/price-books",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/price-books",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "price-books"
          ]
        },
        "description": "POST /api/v1/commerce/price-books — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/commerce/price-books/{priceBookId}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/price-books/{priceBookId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "price-books",
            "{priceBookId}"
          ]
        },
        "description": "GET /api/v1/commerce/price-books/{priceBookId} — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "PATCH /api/v1/commerce/price-books/{priceBookId}",
      "request": {
        "method": "PATCH",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/price-books/{priceBookId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "price-books",
            "{priceBookId}"
          ]
        },
        "description": "PATCH /api/v1/commerce/price-books/{priceBookId} — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/commerce/price-books/{priceBookId}/activate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/price-books/{priceBookId}/activate",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "price-books",
            "{priceBookId}",
            "activate"
          ]
        },
        "description": "POST /api/v1/commerce/price-books/{priceBookId}/activate — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/commerce/price-books/{priceBookId}/retire",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/price-books/{priceBookId}/retire",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "price-books",
            "{priceBookId}",
            "retire"
          ]
        },
        "description": "POST /api/v1/commerce/price-books/{priceBookId}/retire — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/commerce/offers",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/offers",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "offers"
          ]
        },
        "description": "GET /api/v1/commerce/offers — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/commerce/offers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/offers",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "offers"
          ]
        },
        "description": "POST /api/v1/commerce/offers — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/commerce/offers/{offerId}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/offers/{offerId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "offers",
            "{offerId}"
          ]
        },
        "description": "GET /api/v1/commerce/offers/{offerId} — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "PATCH /api/v1/commerce/offers/{offerId}",
      "request": {
        "method": "PATCH",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/offers/{offerId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "offers",
            "{offerId}"
          ]
        },
        "description": "PATCH /api/v1/commerce/offers/{offerId} — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/commerce/offers/{offerId}/activate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/offers/{offerId}/activate",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "offers",
            "{offerId}",
            "activate"
          ]
        },
        "description": "POST /api/v1/commerce/offers/{offerId}/activate — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/commerce/offers/{offerId}/retire",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/offers/{offerId}/retire",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "offers",
            "{offerId}",
            "retire"
          ]
        },
        "description": "POST /api/v1/commerce/offers/{offerId}/retire — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/commerce/coupons",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/coupons",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "coupons"
          ]
        },
        "description": "GET /api/v1/commerce/coupons — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/commerce/coupons",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/coupons",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "coupons"
          ]
        },
        "description": "POST /api/v1/commerce/coupons — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/commerce/coupons/{couponId}/activate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/coupons/{couponId}/activate",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "coupons",
            "{couponId}",
            "activate"
          ]
        },
        "description": "POST /api/v1/commerce/coupons/{couponId}/activate — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/commerce/coupons/{couponId}/retire",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/coupons/{couponId}/retire",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "coupons",
            "{couponId}",
            "retire"
          ]
        },
        "description": "POST /api/v1/commerce/coupons/{couponId}/retire — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/commerce/orders",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/orders",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "orders"
          ]
        },
        "description": "GET /api/v1/commerce/orders — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "GET /api/v1/commerce/orders/{orderId}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/orders/{orderId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "orders",
            "{orderId}"
          ]
        },
        "description": "GET /api/v1/commerce/orders/{orderId} — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/commerce/orders/{orderId}/provider-checkout",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/orders/{orderId}/provider-checkout",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "orders",
            "{orderId}",
            "provider-checkout"
          ]
        },
        "description": "POST /api/v1/commerce/orders/{orderId}/provider-checkout — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/commerce/checkout-sessions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/checkout-sessions",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "checkout-sessions"
          ]
        },
        "description": "POST /api/v1/commerce/checkout-sessions — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/commerce/checkout-sessions/{sessionId}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/checkout-sessions/{sessionId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "checkout-sessions",
            "{sessionId}"
          ]
        },
        "description": "GET /api/v1/commerce/checkout-sessions/{sessionId} — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/commerce/checkout-sessions/{sessionId}/pay",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/checkout-sessions/{sessionId}/pay",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "checkout-sessions",
            "{sessionId}",
            "pay"
          ]
        },
        "description": "POST /api/v1/commerce/checkout-sessions/{sessionId}/pay — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "POST /api/v1/commerce/checkout-sessions/{sessionId}/orders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/commerce/checkout-sessions/{sessionId}/orders",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "commerce",
            "checkout-sessions",
            "{sessionId}",
            "orders"
          ]
        },
        "description": "POST /api/v1/commerce/checkout-sessions/{sessionId}/orders — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/customers/organizations",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations"
          ]
        },
        "description": "GET /api/v1/customers/organizations — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/customers/organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations"
          ]
        },
        "description": "POST /api/v1/customers/organizations — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/customers/organizations/{organizationId}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}"
          ]
        },
        "description": "GET /api/v1/customers/organizations/{organizationId} — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "GET /api/v1/customers/organizations/{organizationId}/memberships",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/memberships",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "memberships"
          ]
        },
        "description": "GET /api/v1/customers/organizations/{organizationId}/memberships — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/customers/organizations/{organizationId}/memberships",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/memberships",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "memberships"
          ]
        },
        "description": "POST /api/v1/customers/organizations/{organizationId}/memberships — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "DELETE /api/v1/customers/organizations/{organizationId}/memberships/{membershipId}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/memberships/{membershipId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "memberships",
            "{membershipId}"
          ]
        },
        "description": "DELETE /api/v1/customers/organizations/{organizationId}/memberships/{membershipId} — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/customers/organizations/{organizationId}/contacts",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/contacts",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "contacts"
          ]
        },
        "description": "GET /api/v1/customers/organizations/{organizationId}/contacts — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/customers/organizations/{organizationId}/contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/contacts",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "contacts"
          ]
        },
        "description": "POST /api/v1/customers/organizations/{organizationId}/contacts — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/customers/contacts/{contactId}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/contacts/{contactId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "contacts",
            "{contactId}"
          ]
        },
        "description": "GET /api/v1/customers/contacts/{contactId} — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "PATCH /api/v1/customers/contacts/{contactId}",
      "request": {
        "method": "PATCH",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/contacts/{contactId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "contacts",
            "{contactId}"
          ]
        },
        "description": "PATCH /api/v1/customers/contacts/{contactId} — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "DELETE /api/v1/customers/contacts/{contactId}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/contacts/{contactId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "contacts",
            "{contactId}"
          ]
        },
        "description": "DELETE /api/v1/customers/contacts/{contactId} — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/customers/organizations/{organizationId}/sites",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/sites",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "sites"
          ]
        },
        "description": "GET /api/v1/customers/organizations/{organizationId}/sites — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "POST /api/v1/customers/organizations/{organizationId}/sites",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/sites",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "sites"
          ]
        },
        "description": "POST /api/v1/customers/organizations/{organizationId}/sites — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/customers/sites/{siteId}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/sites/{siteId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "sites",
            "{siteId}"
          ]
        },
        "description": "GET /api/v1/customers/sites/{siteId} — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "PATCH /api/v1/customers/sites/{siteId}",
      "request": {
        "method": "PATCH",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/sites/{siteId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "sites",
            "{siteId}"
          ]
        },
        "description": "PATCH /api/v1/customers/sites/{siteId} — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "DELETE /api/v1/customers/sites/{siteId}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/sites/{siteId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "sites",
            "{siteId}"
          ]
        },
        "description": "DELETE /api/v1/customers/sites/{siteId} — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "PUT /api/v1/customers/organizations/{organizationId}/parent",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/parent",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "parent"
          ]
        },
        "description": "PUT /api/v1/customers/organizations/{organizationId}/parent — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "DELETE /api/v1/customers/organizations/{organizationId}/parent",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/parent",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "parent"
          ]
        },
        "description": "DELETE /api/v1/customers/organizations/{organizationId}/parent — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "GET /api/v1/customers/organizations/{organizationId}/license-links",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/organizations/{organizationId}/license-links",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "organizations",
            "{organizationId}",
            "license-links"
          ]
        },
        "description": "GET /api/v1/customers/organizations/{organizationId}/license-links — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "GET /api/v1/customers/license-links/by-license/{licenseId}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/license-links/by-license/{licenseId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "license-links",
            "by-license",
            "{licenseId}"
          ]
        },
        "description": "GET /api/v1/customers/license-links/by-license/{licenseId} — Partner M2M; no live credentials in this collection."
      }
    },
    {
      "name": "DELETE /api/v1/customers/license-links/by-license/{licenseId}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/license-links/by-license/{licenseId}",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "license-links",
            "by-license",
            "{licenseId}"
          ]
        },
        "description": "DELETE /api/v1/customers/license-links/by-license/{licenseId} — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "PUT /api/v1/customers/license-links",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Authorization",
            "value": "Bearer {{serviceAccountToken}}"
          },
          {
            "key": "X-Correlation-Id",
            "value": "{{correlationId}}"
          }
        ],
        "url": {
          "raw": "{{managementBaseUrl}}/api/v1/customers/license-links",
          "host": [
            "{{managementBaseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "customers",
            "license-links"
          ]
        },
        "description": "PUT /api/v1/customers/license-links — Partner M2M; no live credentials in this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}\n",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}
