Request refill
Creates a refill request against a completed or partial order. Refills are subject to a per-order cap (3 by default) and a single in-flight constraint — only one pending refill per order at a time.
POST
https://notpanel.com/api/v2action=refillAPI key requiredRate limited (per-key + per-tier + per-IP)Body:
application/x-www-form-urlencodedParameters
| Name | Type | Description |
|---|---|---|
| keyRequired | string | Your API key. |
| actionRequired | string | Must be the literal string "refill". |
| order | string | Single-order ID. Either order or orders is required, not both. |
| orders | string (CSV) | Up to 100 comma-separated order IDs for batch refill. Returns an array — each row carries either a refill ID or a per-order error. |
Example request
Replace YOUR_API_KEYwith the key generated under your dashboard’s API page.
curl -X POST https://notpanel.com/api/v2 \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "key=YOUR_API_KEY&action=refill&order=ord_01HG9X7KJP4N..."const res = await fetch("https://notpanel.com/api/v2", {
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
body: new URLSearchParams({
key: "YOUR_API_KEY",
action: "refill",
order: "ord_01HG9X7KJP4N...",
}),
});
const data = await res.json();
console.log(data);import requests
res = requests.post(
"https://notpanel.com/api/v2",
data={
"key": "YOUR_API_KEY",
"action": "refill",
"order": "ord_01HG9X7KJP4N...",
},
)
print(res.json())<?php
$body = http_build_query([
'key' => 'YOUR_API_KEY',
'action' => 'refill',
'order' => 'ord_01HG9X7KJP4N...',
]);
$response = file_get_contents('https://notpanel.com/api/v2', false, stream_context_create([
'http' => [
'method' => 'POST',
'header' => "Content-Type: application/x-www-form-urlencoded\r\n",
'content' => $body,
'ignore_errors' => true,
],
]));
print_r(json_decode($response, true));
Example response
{
"refill": "ref_01HG9XAZQM..."
}Common errors
| Status | Body | Cause |
|---|---|---|
| 400 | {"error":"Order not found"} | Order ID doesn't exist or doesn't belong to your account. |
| 400 | {"error":"Refill only available for completed or partial orders"} | The order is still pending, processing, in_progress, cancelled, or refunded. |
| 400 | {"error":"Service does not support refills"} | The underlying service has refill=false. Check the services catalog before submitting refill requests. |
| 400 | {"error":"A refill request is already pending for this order"} | Wait for the previous refill to settle before creating another. |
| 400 | {"error":"Refill limit reached (3 per order)"} | Per-order cap exhausted. |