API for managing healthcare product orders and inventory within the Juniper Health network.
Order Fulfillment API (1.0.1)
Download OpenAPI description
Overview
Juniper Health Engineering Team
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/
- Sandbox API Server for testing
https://api.fulfillment.sandbox.juniperhealth.com/v1/oauth2/token
- Sandbox Auth Server for testing
https://auth.fulfillment.sandbox.juniperhealth.com/oauth2/token/oauth2/token
- Production API Server
https://api.fulfillment.juniperhealth.com/v1/oauth2/token
- Production Auth Server
https://auth.fulfillment.juniperhealth.com/oauth2/token/oauth2/token
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.fulfillment.sandbox.juniperhealth.com/v1/oauth2/token \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d grant_type=client_credentials \
-d client_id=string \
-d client_secret=stringResponse
application/json
{ "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "expires_in": 3600, "token_type": "Bearer" }