Skip to main content
GET
/
purchasing
/
reorder-report
Reorder Report (products below reorder point + demand-driven recommendations)
curl --request GET \
  --url https://api.arcuserp.com/v1/purchasing/reorder-report \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.arcuserp.com/v1/purchasing/reorder-report"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.arcuserp.com/v1/purchasing/reorder-report', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.arcuserp.com/v1/purchasing/reorder-report",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.arcuserp.com/v1/purchasing/reorder-report"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.arcuserp.com/v1/purchasing/reorder-report")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.arcuserp.com/v1/purchasing/reorder-report")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "data": [
    {
      "product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "sku": "<string>",
      "product_name": "<string>",
      "available_qty": 123,
      "on_hand": 123,
      "on_purchase_order": 123,
      "reorder_point": 123,
      "reorder_qty": 123,
      "shortage_qty": 123,
      "no_vendor": true,
      "vendor_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "vendor_name": "<string>",
      "lead_time_days": 123,
      "best_unit_cost": 123,
      "est_cost": 123,
      "dependent_demand_units": 123,
      "all_vendors": [
        {}
      ],
      "locations_below": [
        {
          "location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "location_name": "<string>",
          "available": 123,
          "on_purchase_order": 123,
          "reorder_point": 123,
          "shortfall": 123
        }
      ]
    }
  ],
  "configure_recommended": [
    {
      "product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "sku": "<string>",
      "product_name": "<string>",
      "demand_avg_per_day": 123,
      "demand_stddev_per_day": 123,
      "demand_last_computed_at": "2023-11-07T05:31:56Z",
      "total_available": 123,
      "recommended_reorder_point": 123,
      "recommended_reorder_qty": 123,
      "min_pallet_qty": 123,
      "current_reorder_point": 123
    }
  ],
  "summary": {
    "total_products": 123,
    "no_vendor_count": 123,
    "vendor_count": 123,
    "est_total_cost": 123,
    "configure_recommended_count": 123,
    "location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Authorizations

Authorization
string
header
required

API key issued per entity via Settings > Developers > API Keys. Each key carries scopes (e.g. orders:read, products:write). Bearer token format: Authorization: Bearer ark_live_ent_Test keys use ark_test_ent_. Both are issued per entity
via Settings > Developers > API Keys.

Query Parameters

location_id
string<uuid>

Optional UUID. When provided, the report is scoped to the specified location's inventory_balances row. When omitted, the report is entity-wide with per-row locations_below[] detail.

Response

Reorder report sections (below-rp + configure-recommended).

data
object[]

Products with demand_avg_per_day > 0 but no configured reorder_point. Industry pattern: Cin7 "Configure Recommended" + NetSuite Auto-Replenishment. Each row includes a system-recommended reorder_point computed from demand x entity default lead time.

summary
object