Bulk upsert supplier SKUs
curl --request POST \
--url https://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"supplier_id": 123,
"items": [
{
"internal_sku": "<string>",
"sku": "<string>",
"unit_cost": 1,
"moq_quantity": 1,
"moq_unit_id": 123
}
]
}
'import requests
url = "https://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk"
payload = {
"supplier_id": 123,
"items": [
{
"internal_sku": "<string>",
"sku": "<string>",
"unit_cost": 1,
"moq_quantity": 1,
"moq_unit_id": 123
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
supplier_id: 123,
items: [
{
internal_sku: '<string>',
sku: '<string>',
unit_cost: 1,
moq_quantity: 1,
moq_unit_id: 123
}
]
})
};
fetch('https://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk', 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://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk",
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([
'supplier_id' => 123,
'items' => [
[
'internal_sku' => '<string>',
'sku' => '<string>',
'unit_cost' => 1,
'moq_quantity' => 1,
'moq_unit_id' => 123
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk"
payload := strings.NewReader("{\n \"supplier_id\": 123,\n \"items\": [\n {\n \"internal_sku\": \"<string>\",\n \"sku\": \"<string>\",\n \"unit_cost\": 1,\n \"moq_quantity\": 1,\n \"moq_unit_id\": 123\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"supplier_id\": 123,\n \"items\": [\n {\n \"internal_sku\": \"<string>\",\n \"sku\": \"<string>\",\n \"unit_cost\": 1,\n \"moq_quantity\": 1,\n \"moq_unit_id\": 123\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"supplier_id\": 123,\n \"items\": [\n {\n \"internal_sku\": \"<string>\",\n \"sku\": \"<string>\",\n \"unit_cost\": 1,\n \"moq_quantity\": 1,\n \"moq_unit_id\": 123\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"created": 123,
"updated": 123,
"skipped": 123,
"errors": [
{
"row": 123,
"message": "<string>"
}
]
}{
"message": "<string>"
}{
"message": "<string>",
"errors": {}
}Supplier SKUs
Bulk upsert supplier SKUs
Upserts multiple supplier SKU records for a single supplier, keyed by internal Luminous SKU. For each item:
- If a record already exists for the resolved product + supplier, it is updated.
- Otherwise a new record is created.
Items with an unrecognized internal_sku (not matching any Luminous product)
are skipped and counted in skipped. Items that fail validation are counted
in errors.
Returns a summary with counts of created, updated, skipped, and errored rows — not a collection of the upserted records.
POST
/
supplier-skus
/
bulk
Bulk upsert supplier SKUs
curl --request POST \
--url https://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"supplier_id": 123,
"items": [
{
"internal_sku": "<string>",
"sku": "<string>",
"unit_cost": 1,
"moq_quantity": 1,
"moq_unit_id": 123
}
]
}
'import requests
url = "https://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk"
payload = {
"supplier_id": 123,
"items": [
{
"internal_sku": "<string>",
"sku": "<string>",
"unit_cost": 1,
"moq_quantity": 1,
"moq_unit_id": 123
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
supplier_id: 123,
items: [
{
internal_sku: '<string>',
sku: '<string>',
unit_cost: 1,
moq_quantity: 1,
moq_unit_id: 123
}
]
})
};
fetch('https://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk', 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://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk",
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([
'supplier_id' => 123,
'items' => [
[
'internal_sku' => '<string>',
'sku' => '<string>',
'unit_cost' => 1,
'moq_quantity' => 1,
'moq_unit_id' => 123
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk"
payload := strings.NewReader("{\n \"supplier_id\": 123,\n \"items\": [\n {\n \"internal_sku\": \"<string>\",\n \"sku\": \"<string>\",\n \"unit_cost\": 1,\n \"moq_quantity\": 1,\n \"moq_unit_id\": 123\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"supplier_id\": 123,\n \"items\": [\n {\n \"internal_sku\": \"<string>\",\n \"sku\": \"<string>\",\n \"unit_cost\": 1,\n \"moq_quantity\": 1,\n \"moq_unit_id\": 123\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{companyName}.api.joinluminous.com/external/api/v1/supplier-skus/bulk")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"supplier_id\": 123,\n \"items\": [\n {\n \"internal_sku\": \"<string>\",\n \"sku\": \"<string>\",\n \"unit_cost\": 1,\n \"moq_quantity\": 1,\n \"moq_unit_id\": 123\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"created": 123,
"updated": 123,
"skipped": 123,
"errors": [
{
"row": 123,
"message": "<string>"
}
]
}{
"message": "<string>"
}{
"message": "<string>",
"errors": {}
}Authorizations
Authenticate using a bearer token. To create a token, navigate to /settings/api-tokens and click Create API Token.
Body
application/json
⌘I