deprecated

Coming Oct 1: subscriptionProviders array will be removed from ZAP Data Subscriptions API

The individual ADT/Lab providers a given patient will be subscribed to can vary based on factors like geographic location and additional contracting requirements. To avoid any confusion moving forward, the response to GET https://api.zusapi.com/zap-data-subscriptions/packages will no longer include asubscriptionProvidersarray for each package.

Instead, packages will include a boolean value for adtFeeds:true/false and labFeeds: true/false. Please contact support if you have any questions on subscription providers for your patients.

Before:

 "attributes": {
                "meta": {
                    "adtFeeds": true,
                    "labFeeds": true,
                    
                    "subscriptionProviders": [
                        "bamboo",
                        "collective",
                        "connectn",
                        "eden",
                        "floridahie",
                        "ghhconnect",
                        "manifestmedex",
                        "quest",
                        "schio"
                    ]
                },
                "name": "ZAP Pro"

After:

 "attributes": {
                "meta": {
                    "adtFeeds": true,
                    "labFeeds": true
                },
                "name": "ZAP Pro"