API for managing healthcare product orders and inventory within the Juniper Health network.
Order Fulfillment API (1.0.1)
https://api.fulfillment.sandbox.juniperhealth.com/v1/
https://auth.fulfillment.sandbox.juniperhealth.com/oauth2/token/
https://api.fulfillment.juniperhealth.com/v1/
https://auth.fulfillment.juniperhealth.com/oauth2/token/
- Sandbox API Server for testing
https://api.fulfillment.sandbox.juniperhealth.com/v1/products
- Sandbox Auth Server for testing
https://auth.fulfillment.sandbox.juniperhealth.com/oauth2/token/products
- Production API Server
https://api.fulfillment.juniperhealth.com/v1/products
- Production Auth Server
https://auth.fulfillment.juniperhealth.com/oauth2/token/products
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.fulfillment.sandbox.juniperhealth.com/v1/products?limit=10&cursor=string&direction=next&status=ACTIVE&updatedAfter=2023-10-01&updatedBefore=2023-10-01' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "products": [ { … } ], "cursor": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." }
- Sandbox API Server for testing
https://api.fulfillment.sandbox.juniperhealth.com/v1/products/{productId}
- Sandbox Auth Server for testing
https://auth.fulfillment.sandbox.juniperhealth.com/oauth2/token/products/{productId}
- Production API Server
https://api.fulfillment.juniperhealth.com/v1/products/{productId}
- Production Auth Server
https://auth.fulfillment.juniperhealth.com/oauth2/token/products/{productId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.fulfillment.sandbox.juniperhealth.com/v1/products/77123129891 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Successfully retrieved product details
Product certifications and standards
Allergy related information
Current product availability status
{ "id": 77123129891, "name": "Elite EPA", "description": "A comprehensive wellness supplement", "packDescription": "Whole Body Wellness", "price": "0.53", "external": false, "productImage": "https://example.com/images/elite-epa.jpg", "recommendedUsage": { "morning": 1, "afternoon": 0, "evening": 1, "sleep": 0 }, "form": "softgel", "certifications": [ "kosher", "halal", "non_gmo", "vegan" ], "allergens": [ "gluten_free", "dairy_free", "soy_free" ], "SupplementFactsPanel": { "servingSize": 2, "type": "softgel", "otherIngredients": [ … ], "ingredientInformation": [ … ], "nutritionInformation": [ … ] }, "status": "ACTIVE", "createdAt": "2023-10-01T17:02:56.866619Z", "updatedAt": "2023-10-01T17:02:56.866619ZZ" }