{
  "info": {
    "_postman_id": "af46096a-188c-49fe-a3ae-6c142351ba02",
    "name": "Horizon Identity & GPID API",
    "description": "Universal GPID formats:\n- Patient: APX-00000000\n- CMS Partner: CMS-00000000\n- All others: {PRODUCT}-{TYPE}-{NNNNN}\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://api.parkerapex.com",
      "type": "string"
    },
    {
      "key": "access_token",
      "value": "REPLACE_WITH_TOKEN",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "Identity",
      "item": [
        {
          "name": "Match incoming demographics to an existing GPID without creating a record",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/identity/match",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "identity",
                "match"
              ]
            },
            "description": "",
            "body": {
              "mode": "raw",
              "raw": "{}"
            }
          }
        },
        {
          "name": "Resolve or create GPID",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/identity/resolve",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "identity",
                "resolve"
              ]
            },
            "description": "",
            "body": {
              "mode": "raw",
              "raw": "{}"
            }
          }
        },
        {
          "name": "Merge one or more GPIDs into a survivor GPID",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/identity/merge",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "identity",
                "merge"
              ]
            },
            "description": "",
            "body": {
              "mode": "raw",
              "raw": "{}"
            }
          }
        },
        {
          "name": "Split one GPID into two or more new identities",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/identity/split",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "identity",
                "split"
              ]
            },
            "description": "",
            "body": {
              "mode": "raw",
              "raw": "{}"
            }
          }
        },
        {
          "name": "Get identity record by GPID",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/identity/{gpid}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "identity",
                "{gpid}"
              ]
            },
            "description": ""
          }
        }
      ]
    },
    {
      "name": "Plexus GPID",
      "item": [
        {
          "name": "Full lifecycle timeline for a specific GPID",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/plexus/gpid/{gpid_value}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "plexus",
                "gpid",
                "{gpid_value}"
              ]
            },
            "description": ""
          }
        },
        {
          "name": "Suspend a GPID",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/plexus/gpid/{gpid_value}/suspend",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "plexus",
                "gpid",
                "{gpid_value}",
                "suspend"
              ]
            },
            "description": "",
            "body": {
              "mode": "raw",
              "raw": "{}"
            }
          }
        },
        {
          "name": "Revoke a GPID permanently",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/plexus/gpid/{gpid_value}/revoke",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "plexus",
                "gpid",
                "{gpid_value}",
                "revoke"
              ]
            },
            "description": "",
            "body": {
              "mode": "raw",
              "raw": "{}"
            }
          }
        },
        {
          "name": "GPIDs with elevated risk scores",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/plexus/gpid/anomalies",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "plexus",
                "gpid",
                "anomalies"
              ]
            },
            "description": ""
          }
        },
        {
          "name": "Dormant GPIDs with no recent activity",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/plexus/gpid/dormant",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "plexus",
                "gpid",
                "dormant"
              ]
            },
            "description": ""
          }
        },
        {
          "name": "Export full GPID registry (JSON)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/plexus/gpid/export",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "plexus",
                "gpid",
                "export"
              ]
            },
            "description": ""
          }
        },
        {
          "name": "IAM Access Health Score (0-100)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/plexus/api/health-score",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "plexus",
                "api",
                "health-score"
              ]
            },
            "description": ""
          }
        },
        {
          "name": "Currently active sessions with geolocation",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/plexus/api/active-sessions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "plexus",
                "api",
                "active-sessions"
              ]
            },
            "description": ""
          }
        },
        {
          "name": "SOC 2, ISO 27001, GDPR, HITRUST compliance checklist",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/plexus/api/compliance-status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "plexus",
                "api",
                "compliance-status"
              ]
            },
            "description": ""
          }
        }
      ]
    }
  ]
}