Create an order
curl --request POST \
--url https://api.series.hr/fnb/create-order \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '
{
"CustomerTarget": "<string>",
"Items": [
{
"MenuItemId": "<string>",
"Quantity": 50,
"Notes": "<string>"
}
],
"TableNumber": "<string>",
"OrderNumber": "<string>"
}
'import requests
url = "https://api.series.hr/fnb/create-order"
payload = {
"CustomerTarget": "<string>",
"Items": [
{
"MenuItemId": "<string>",
"Quantity": 50,
"Notes": "<string>"
}
],
"TableNumber": "<string>",
"OrderNumber": "<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({
CustomerTarget: '<string>',
Items: [{MenuItemId: '<string>', Quantity: 50, Notes: '<string>'}],
TableNumber: '<string>',
OrderNumber: '<string>'
})
};
fetch('https://api.series.hr/fnb/create-order', 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/create-order",
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([
'CustomerTarget' => '<string>',
'Items' => [
[
'MenuItemId' => '<string>',
'Quantity' => 50,
'Notes' => '<string>'
]
],
'TableNumber' => '<string>',
'OrderNumber' => '<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/create-order"
payload := strings.NewReader("{\n \"CustomerTarget\": \"<string>\",\n \"Items\": [\n {\n \"MenuItemId\": \"<string>\",\n \"Quantity\": 50,\n \"Notes\": \"<string>\"\n }\n ],\n \"TableNumber\": \"<string>\",\n \"OrderNumber\": \"<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/create-order")
.header("apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"CustomerTarget\": \"<string>\",\n \"Items\": [\n {\n \"MenuItemId\": \"<string>\",\n \"Quantity\": 50,\n \"Notes\": \"<string>\"\n }\n ],\n \"TableNumber\": \"<string>\",\n \"OrderNumber\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.series.hr/fnb/create-order")
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 \"CustomerTarget\": \"<string>\",\n \"Items\": [\n {\n \"MenuItemId\": \"<string>\",\n \"Quantity\": 50,\n \"Notes\": \"<string>\"\n }\n ],\n \"TableNumber\": \"<string>\",\n \"OrderNumber\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyFood & Beverage
Create Order
Create a new F&B order
POST
/
fnb
/
create-order
Create an order
curl --request POST \
--url https://api.series.hr/fnb/create-order \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '
{
"CustomerTarget": "<string>",
"Items": [
{
"MenuItemId": "<string>",
"Quantity": 50,
"Notes": "<string>"
}
],
"TableNumber": "<string>",
"OrderNumber": "<string>"
}
'import requests
url = "https://api.series.hr/fnb/create-order"
payload = {
"CustomerTarget": "<string>",
"Items": [
{
"MenuItemId": "<string>",
"Quantity": 50,
"Notes": "<string>"
}
],
"TableNumber": "<string>",
"OrderNumber": "<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({
CustomerTarget: '<string>',
Items: [{MenuItemId: '<string>', Quantity: 50, Notes: '<string>'}],
TableNumber: '<string>',
OrderNumber: '<string>'
})
};
fetch('https://api.series.hr/fnb/create-order', 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/create-order",
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([
'CustomerTarget' => '<string>',
'Items' => [
[
'MenuItemId' => '<string>',
'Quantity' => 50,
'Notes' => '<string>'
]
],
'TableNumber' => '<string>',
'OrderNumber' => '<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/create-order"
payload := strings.NewReader("{\n \"CustomerTarget\": \"<string>\",\n \"Items\": [\n {\n \"MenuItemId\": \"<string>\",\n \"Quantity\": 50,\n \"Notes\": \"<string>\"\n }\n ],\n \"TableNumber\": \"<string>\",\n \"OrderNumber\": \"<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/create-order")
.header("apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"CustomerTarget\": \"<string>\",\n \"Items\": [\n {\n \"MenuItemId\": \"<string>\",\n \"Quantity\": 50,\n \"Notes\": \"<string>\"\n }\n ],\n \"TableNumber\": \"<string>\",\n \"OrderNumber\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.series.hr/fnb/create-order")
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 \"CustomerTarget\": \"<string>\",\n \"Items\": [\n {\n \"MenuItemId\": \"<string>\",\n \"Quantity\": 50,\n \"Notes\": \"<string>\"\n }\n ],\n \"TableNumber\": \"<string>\",\n \"OrderNumber\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyCreate a new F&B order. The API validates that all menu items exist and are available, checks gamepass ownership requirements, and auto-assigns a table for dine-in orders when no specific table is requested.
Request
curl -X POST https://api.series.hr/fnb/create-order \
-H "apikey: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"CustomerTarget": "714760171",
"OrderType": "dine-in",
"TableNumber": "T1",
"Items": [
{
"MenuItemId": "item-1",
"Quantity": 2,
"Notes": "Extra hot"
},
{
"MenuItemId": "item-3",
"Quantity": 1
}
]
}'
Body
string
required
Roblox user ID or username of the customer.
array
required
Array of order items. Each item requires a
MenuItemId and optionally Quantity (default 1, max 100) and Notes (max 500 characters).string
Order type:
dine-in (default) or to-go.string
Specific table number for dine-in orders. If omitted, an available table is auto-assigned when possible.
string
Custom order number. If omitted, auto-increments from the last order.
Response
{
"success": true,
"data": {
"WorkspaceId": "a7d5339a-5531-4336-99c6-6f3249c9ac20",
"OrderNumber": "13",
"Action": "create",
"Order": {
"Id": "1717027200000",
"Customer": {
"UserId": 714760171,
"Username": "builderman",
"DisplayName": "Builderman",
"AvatarUrl": "https://tr.rbxcdn.com/..."
},
"OrderType": "dine-in",
"TableNumber": "T1",
"OrderNumber": "13",
"Items": [
{
"MenuItemId": "item-1",
"Name": "Espresso",
"Quantity": 2,
"Price": 25,
"Notes": "Extra hot"
},
{
"MenuItemId": "item-3",
"Name": "Croissant",
"Quantity": 1,
"Price": 15,
"Notes": ""
}
],
"Status": "pending",
"ClaimStatus": "not-claimed",
"ClaimedBy": null,
"Total": 65,
"CreatedAt": "2026-04-05T11:30:00.000Z",
"CreatedBy": "714760171"
}
}
}
Status Codes
200: Order created successfully400: Invalid input, menu item not found or unavailable, gamepass check failed, or table not found401: API key is required or invalid403: F&B module is disabled or workspace access is denied
Authorizations
Pass your API key in the apikey header. Alternatively, the x-api-key header is also accepted.
Body
application/json
Roblox user ID or username of the customer
Array of order items
Show child attributes
Show child attributes
Order type (default: dine-in)
Available options:
dine-in, to-go Specific table number for dine-in orders
Custom order number (auto-increments if omitted)
Response
Order created
⌘I

