Claim an order
curl --request POST \
--url https://api.series.hr/fnb/claim-order/{orderNumber} \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '
{
"StaffUserId": "<string>"
}
'import requests
url = "https://api.series.hr/fnb/claim-order/{orderNumber}"
payload = { "StaffUserId": "<string>" }
headers = {
"apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {apikey: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({StaffUserId: '<string>'})
};
fetch('https://api.series.hr/fnb/claim-order/{orderNumber}', 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.series.hr/fnb/claim-order/{orderNumber}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'StaffUserId' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"apikey: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.series.hr/fnb/claim-order/{orderNumber}"
payload := strings.NewReader("{\n \"StaffUserId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apikey", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.series.hr/fnb/claim-order/{orderNumber}")
.header("apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"StaffUserId\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.series.hr/fnb/claim-order/{orderNumber}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apikey"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"StaffUserId\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyFood & Beverage
Claim Order
Assign a staff member to an F&B order
POST
/
fnb
/
claim-order
/
{orderNumber}
Claim an order
curl --request POST \
--url https://api.series.hr/fnb/claim-order/{orderNumber} \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '
{
"StaffUserId": "<string>"
}
'import requests
url = "https://api.series.hr/fnb/claim-order/{orderNumber}"
payload = { "StaffUserId": "<string>" }
headers = {
"apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {apikey: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({StaffUserId: '<string>'})
};
fetch('https://api.series.hr/fnb/claim-order/{orderNumber}', 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.series.hr/fnb/claim-order/{orderNumber}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'StaffUserId' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"apikey: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.series.hr/fnb/claim-order/{orderNumber}"
payload := strings.NewReader("{\n \"StaffUserId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apikey", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.series.hr/fnb/claim-order/{orderNumber}")
.header("apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"StaffUserId\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.series.hr/fnb/claim-order/{orderNumber}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apikey"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"StaffUserId\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyClaim an order for a staff member. The staff member becomes responsible for preparing and serving the order. An order can only be claimed once.
Request
curl -X POST https://api.series.hr/fnb/claim-order/12 \
-H "apikey: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"StaffUserId": "714760171"
}'
Path Parameters
string
required
The order number to claim.
Body
string
required
Roblox user ID or username of the staff member claiming the order.
Response
{
"success": true,
"data": {
"WorkspaceId": "a7d5339a-5531-4336-99c6-6f3249c9ac20",
"OrderNumber": "12",
"Action": "claim",
"Order": {
"Id": "1717027200000",
"Customer": {
"UserId": 714760171,
"Username": "builderman",
"DisplayName": "Builderman",
"AvatarUrl": "https://tr.rbxcdn.com/..."
},
"OrderType": "dine-in",
"TableNumber": "T1",
"OrderNumber": "12",
"Items": [],
"Status": "pending",
"ClaimStatus": "claimed",
"ClaimedBy": {
"UserId": 1,
"Username": "Roblox",
"DisplayName": "Roblox",
"AvatarUrl": "https://tr.rbxcdn.com/...",
"ClaimedAt": "2026-04-05T12:00:00.000Z"
},
"Total": 50,
"CreatedAt": "2026-04-05T11:30:00.000Z",
"CreatedBy": "714760171"
}
}
}
Status Codes
200: Order claimed successfully400: Order is already claimed, or order is served/cancelled401: API key is required or invalid403: F&B module is disabled or workspace access is denied404: Order not found
Authorizations
Pass your API key in the apikey header. Alternatively, the x-api-key header is also accepted.
Path Parameters
The order number to claim
Body
application/json
Roblox user ID or username of the staff member
Response
Order claimed
⌘I

