curl --request POST \
--url https://{companyName}.api.joinluminous.com/external/api/v1/pickflow/picklists/{id}/complete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"picklist_item_id": 123,
"picked_quantity": 123,
"rfq_id": 123,
"location_id": 123,
"lot_id": 123,
"tote": "<string>"
}
]
}
'import requests
url = "https://{companyName}.api.joinluminous.com/external/api/v1/pickflow/picklists/{id}/complete"
payload = { "items": [
{
"picklist_item_id": 123,
"picked_quantity": 123,
"rfq_id": 123,
"location_id": 123,
"lot_id": 123,
"tote": "<string>"
}
] }
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({
items: [
{
picklist_item_id: 123,
picked_quantity: 123,
rfq_id: 123,
location_id: 123,
lot_id: 123,
tote: '<string>'
}
]
})
};
fetch('https://{companyName}.api.joinluminous.com/external/api/v1/pickflow/picklists/{id}/complete', 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/pickflow/picklists/{id}/complete",
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([
'items' => [
[
'picklist_item_id' => 123,
'picked_quantity' => 123,
'rfq_id' => 123,
'location_id' => 123,
'lot_id' => 123,
'tote' => '<string>'
]
]
]),
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/pickflow/picklists/{id}/complete"
payload := strings.NewReader("{\n \"items\": [\n {\n \"picklist_item_id\": 123,\n \"picked_quantity\": 123,\n \"rfq_id\": 123,\n \"location_id\": 123,\n \"lot_id\": 123,\n \"tote\": \"<string>\"\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/pickflow/picklists/{id}/complete")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"picklist_item_id\": 123,\n \"picked_quantity\": 123,\n \"rfq_id\": 123,\n \"location_id\": 123,\n \"lot_id\": 123,\n \"tote\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{companyName}.api.joinluminous.com/external/api/v1/pickflow/picklists/{id}/complete")
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 \"items\": [\n {\n \"picklist_item_id\": 123,\n \"picked_quantity\": 123,\n \"rfq_id\": 123,\n \"location_id\": 123,\n \"lot_id\": 123,\n \"tote\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Picklist completed successfully",
"picklist_id": 4821,
"already_completed": false,
"items_updated": 3,
"transfers_completed": 3,
"wip_location_id": 9903,
"wip_location_name": "WIP-PICKLIST-4821"
}{
"error": "Unauthorized",
"message": "Authentication credentials are missing or invalid",
"status_code": 401
}{
"message": "<string>"
}{
"message": "<string>",
"errors": {}
}Complete picking for a picklist
Mark a picklist’s lines as picked and move the picked stock into the picklist’s WIP bin.
Each item must name the product (rfq_id), the bin the stock is deducted from (location_id), and — for a lot-tracked product — the lot (lot_id) that was picked (CS-10083). camelCase keys (picklistItemId, rfqId, locationId, lotId, quantityPicked, toteBarcode) are still accepted and normalized.
Retries are safe. A picklist that is already picked or packed returns 200 with already_completed: true, transfers_completed: 0 and no stock movement — use it to distinguish “my earlier call landed” from “this ran now”. A retry is never an error.
Caller-correctable refusals (wrong lot, wrong bin, short pick, an item from another picklist) answer 422 in the same { message, errors } shape as a validation failure, keyed by field path; every bad line is reported in one response.
curl --request POST \
--url https://{companyName}.api.joinluminous.com/external/api/v1/pickflow/picklists/{id}/complete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"picklist_item_id": 123,
"picked_quantity": 123,
"rfq_id": 123,
"location_id": 123,
"lot_id": 123,
"tote": "<string>"
}
]
}
'import requests
url = "https://{companyName}.api.joinluminous.com/external/api/v1/pickflow/picklists/{id}/complete"
payload = { "items": [
{
"picklist_item_id": 123,
"picked_quantity": 123,
"rfq_id": 123,
"location_id": 123,
"lot_id": 123,
"tote": "<string>"
}
] }
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({
items: [
{
picklist_item_id: 123,
picked_quantity: 123,
rfq_id: 123,
location_id: 123,
lot_id: 123,
tote: '<string>'
}
]
})
};
fetch('https://{companyName}.api.joinluminous.com/external/api/v1/pickflow/picklists/{id}/complete', 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/pickflow/picklists/{id}/complete",
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([
'items' => [
[
'picklist_item_id' => 123,
'picked_quantity' => 123,
'rfq_id' => 123,
'location_id' => 123,
'lot_id' => 123,
'tote' => '<string>'
]
]
]),
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/pickflow/picklists/{id}/complete"
payload := strings.NewReader("{\n \"items\": [\n {\n \"picklist_item_id\": 123,\n \"picked_quantity\": 123,\n \"rfq_id\": 123,\n \"location_id\": 123,\n \"lot_id\": 123,\n \"tote\": \"<string>\"\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/pickflow/picklists/{id}/complete")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"picklist_item_id\": 123,\n \"picked_quantity\": 123,\n \"rfq_id\": 123,\n \"location_id\": 123,\n \"lot_id\": 123,\n \"tote\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{companyName}.api.joinluminous.com/external/api/v1/pickflow/picklists/{id}/complete")
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 \"items\": [\n {\n \"picklist_item_id\": 123,\n \"picked_quantity\": 123,\n \"rfq_id\": 123,\n \"location_id\": 123,\n \"lot_id\": 123,\n \"tote\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Picklist completed successfully",
"picklist_id": 4821,
"already_completed": false,
"items_updated": 3,
"transfers_completed": 3,
"wip_location_id": 9903,
"wip_location_name": "WIP-PICKLIST-4821"
}{
"error": "Unauthorized",
"message": "Authentication credentials are missing or invalid",
"status_code": 401
}{
"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.
Path Parameters
The picklist ID.
Body
1Show child attributes
Show child attributes
Response
Picklist completed (or already completed on a safe retry).
true
"Picklist completed successfully"
4821
true when the picklist was already picked/packed and this call moved no stock.
false
3
0 on an already-completed retry.
3
9903
"WIP-PICKLIST-4821"