Skip to content

Order Fulfillment API (1.0.1)

API for managing healthcare product orders and inventory within the Juniper Health network.

Download OpenAPI description
Overview
Juniper Health Engineering Team

engineering@juniperhealth.com

Terms of Service

Languages
Servers
Sandbox API Server for testing

https://api.fulfillment.sandbox.juniperhealth.com/v1/

Sandbox Auth Server for testing

https://auth.fulfillment.sandbox.juniperhealth.com/oauth2/token/

Production API Server

https://api.fulfillment.juniperhealth.com/v1/

Production Auth Server

https://auth.fulfillment.juniperhealth.com/oauth2/token/

Authentication

OAuth 2.0 token management

Operations

Orders

Create, retrieve, and manage customer orders

Operations

Products

Access product catalog and inventory details

Operations

Shipping

Retrieve available shipping methods

Operations

Request

Retrieve list of available shipping methods with details

Security
oauth2ClientCredentials
curl -i -X GET \
  https://api.fulfillment.sandbox.juniperhealth.com/v1/shipping-methods \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Successfully retrieved shipping methods

Bodyapplication/jsonArray [
namestring

Shipping method name

Example: "STANDARD"
descriptionstring

Shipping method details

Example: "5-8 business days"
pricestring

Shipping cost

Example: "9.99"
]
Response
application/json
[ { "name": "STANDARD", "description": "5-8 business days", "price": "9.99" } ]