{
  "info": {
    "_postman_id": "a115d7e6-91a2-41a7-8ff4-1db59038132f",
    "name": "CMS Ecosystem API",
    "description": "OpenAPI contract for Apex CMS Health Tech Ecosystem endpoints.\nCovers partner onboarding, ecosystem approvals, GPID-aware patient resolution,\ndual-verified data exchange, FHIR artifact catalog, and SDK distribution.\n",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{access_token}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "base_url",
      "value": "https://cms.prod.parkerapex.com/api/v1",
      "type": "string"
    },
    {
      "key": "access_token",
      "value": "REPLACE_WITH_TOKEN",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "SDK",
      "item": [
        {
          "name": "List CMS Health Tech Ecosystem SDKs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/cms-ecosystem/sdk-catalog",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "cms-ecosystem",
                "sdk-catalog"
              ]
            },
            "description": "Returns the SDK catalog for the CMS Health Tech Ecosystem, including\nTypeScript, Python, and Java packages with GPID-aware patient resolution\nand dual-verified data helpers.\n"
          }
        }
      ]
    },
    {
      "name": "Partners",
      "item": [
        {
          "name": "Submit a CMS partner application",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/cms-ecosystem/partners",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "cms-ecosystem",
                "partners"
              ]
            },
            "description": "Self-service partner onboarding. Creates a pending GPID for the\napplicant organization and enqueues it for ecosystem approval.\n",
            "body": {
              "mode": "raw",
              "raw": "{}"
            }
          }
        },
        {
          "name": "Get partner info by GPID",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/cms-ecosystem/partners/{gpid}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "cms-ecosystem",
                "partners",
                "{gpid}"
              ]
            },
            "description": "Returns partner details and lifecycle events."
          }
        }
      ]
    }
  ]
}