latestOpenAPI 3.1.02026-08-194237902.5 MB

563848e0ecc0

Facility

Preview facility location termination impact

Returns a read-only pre-flight summary of what would be affected if the specified facility location were terminated: the location name, address summary, the networks (and optional plan ids) the location participates in via the facility, and whether the location is already terminated. Use this before calling POST .../locations/{certifyLocationId}/terminate to understand the scope of the change — this endpoint makes no changes itself.

get/facilities/{certifyFacilityId}/locations/{certifyLocationId}/termination-impact

Path parameters

certifyFacilityIdstring required

Certify facility ID

certifyLocationIdstring required

Certify location ID

Headers

tenant-idstring

Response

Impact preview

certifyLocationIdstring

Certify location ID

locationNamestring

Display name for the location, if available

serviceAddressSummarystring

Summary of the service address, if available

alreadyTerminatedboolean

True if this location is already terminated at the facility

Example response

{
  "certifyLocationId": "loc_4d5e6f",
  "locationName": "Main Street Clinic",
  "serviceAddressSummary": "123 Main St, Springfield, IL 62704",
  "networks": [
    {
      "networkId": "net-xyz789",
      "planIds": [
        "plan_abc123"
      ]
    }
  ]
}