Product Bundle Ids for a Storefront

For a given storefront such as careglp-demo.careglp.com, when you load it in the browser it will redirect to careglp-demo.careglp.com/partner/careglp-demo. The last part after partner/ is called the linkName. In this case the linkName is careglp-demo. Here is an example of how to get the product bundle ids for this storefront. These may be used with the Patient Case Creation Endpoint.


curl 'https://api.care360-next.carevalidate.com/graphql/' \
  -H 'content-type: application/json' \
  -d '{
    "operationName": "OrganizationPartnerIntegrationPublicInfo",
    "variables": {
      "linkName": "careglp-demo"
    },
    "query": "query OrganizationPartnerIntegrationPublicInfo($linkName: String) { organizationPartnerIntegrationPublicInfo(linkName: $linkName) { productBundles { id name } } }"
  }'


This shows that line 6 reading "linkName": "careglp-demo" is the only one that needs to change to get the product bundle ids for another storefront. Here is an example of the output for the CareGLP Demo storefront.


{
  "data": {
    "organizationPartnerIntegrationPublicInfo": {
      "productBundles": [
        {
          "id": "58a1aedf-355f-4f2e-85f7-c44a87310a34",
          "name": "Personalized GLP-1 Medication"
        },
        {
          "id": "71332138-cca8-4925-a1f6-8ee0e45b733d",
          "name": "Compounded Semaglutide Oral Dissolving Tablets"
        },
        {
          "id": "3d21eba6-d6da-4cc4-84b0-5552e1681ee5",
          "name": "Compounded Tirzepatide Oral Dissolving Tablets\t"
        },
        {
          "id": "dbc137c0-873f-44fc-83bb-30d8804ab2e5",
          "name": "Compounded Semaglutide Injections (PGP margin $55)"
        },
        {
          "id": "b70ec451-16d3-43ba-aad1-5afb0724f8c2",
          "name": "Compounded Tirzepatide Injections"
        },
        {
          "id": "cc1d7d9d-250b-49f4-9d8f-c58a604025d5",
          "name": "NAD+ Injections"
        },
        {
          "id": "6011a6a8-028b-4792-9391-98e27b3a5838",
          "name": "Sermorelin Injections"
        },
        {
          "id": "445b1c24-cca0-4316-b2fd-8146cb0cf168",
          "name": "Glutathione Injections"
        },
        {
          "id": "6dae57d9-5e8e-4642-a506-f3c82324d878",
          "name": "B12 Methylcobalamin Injections"
        },
        {
          "id": "5b26b472-2fcb-4392-9cb5-bbf7f337fe84",
          "name": "Lipotropic Injections"
        },
        {
          "id": "3ec4c6b1-d04f-4bbb-b872-6d6296c4be10",
          "name": "Vasoactive Intestinal Peptide Nasal Spray"
        },
        {
          "id": "ab9e53d6-20c0-4d9a-b07b-7ffe1ca161b7",
          "name": "Cashmere Anti Aging Cream"
        },
        {
          "id": "3dbc9010-373c-4801-aa98-746ce468594f",
          "name": "Diamond Delux Plus Skin Lightening Cream"
        },
        {
          "id": "60d87b99-53c9-49f1-a597-d250dc7bc8d3",
          "name": "Puffy Eye Cream"
        },
        {
          "id": "e3b071af-6916-4bf6-82c9-f3b5b734b07b",
          "name": "Stella Anti Aging Night Cream"
        },
        {
          "id": "a6756085-a942-4950-9676-b2876d7ff199",
          "name": "Rosa Rosacea Treatment Cream"
        }
      ]
    }
  }
}



Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article