GET
/
v1
/
team
/
orders
/
{id}
Get order
curl --request GET \
  --url https://api.oneofnone.io/v1/team/orders/{id} \
  --header 'x-api-key: <api-key>'
{
  "order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "order_number": "<string>",
  "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email": "jsmith@example.com",
  "user": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "email": "jsmith@example.com",
    "first_name": "<string>",
    "last_name": "<string>"
  },
  "shipping_address": {
    "first_name": "<string>",
    "last_name": "<string>",
    "name": "<string>",
    "phone": "<string>",
    "company": "<string>",
    "address1": "<string>",
    "address2": "<string>",
    "city": "<string>",
    "zip": "<string>",
    "province": "<string>",
    "country": "<string>",
    "province_code": "<string>",
    "country_code": "<string>"
  },
  "line_items": [
    {
      "sku": "<string>",
      "name": "<string>",
      "quantity": 123,
      "price": 123,
      "total": 123,
      "properties": {}
    }
  ],
  "status": "PENDING",
  "total_amount": 123,
  "subtotal_amount": 123,
  "total_shipping": 123,
  "total_tax": 123,
  "total_discounts": 123,
  "customizations": {},
  "customer_id": "<string>",
  "order_status_url": "<string>",
  "source": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

The API key required for accessing protected routes. It should be included in the request headers as x-api-key.

Path Parameters

id
integer
required

The order number of the order to fetch.

Required range: x >= 1

Response

200
application/json

Successfully retrieved team order.

An order for NFC chips or other products, including customer information, items, pricing, and fulfillment details.