Skip to main content
GET
/
v1
/
orders
/
{orderId}
JavaScript
import BlueHive from '@bluehive/sdk';

const client = new BlueHive({
  apiKey: 'My API Key',
});

const order = await client.orders.retrieve('orderId');

console.log(order.orderId);
{
  "orderId": "<string>",
  "orderNumber": "<string>",
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

API key for accessing BlueHive API endpoints. Format: "ApiKey <your-api-key>" or "Bearer <your-api-key>"

Path Parameters

orderId
string
required

Response

Default Response

orderId
string
orderNumber
string
status
string
I