Create a job wave pick
Body·
application/json
The job wave pick create model.
- Type: stringFormat: uuidclient
Id The ID of the client for the job.
- Type: string | nulldescription
The description of the job.
- Type: stringFormat: date-timedue
Date Time The due date and time of the job.
- Type: integerenumpriority
Integer numbers.
values- Normal = 2
- High = 3
- Urgent = 4
- Type: string | nullreference
The reference of the job.
- Type: integerenumstyle
Integer numbers.
values- Parallel
Picking = 1 - Bulk
Picking = 2
- Type: stringFormat: uuidwarehouse
Id The ID of the warehouse where the job is created.
Responses
- application/json
Request Example for post/v1/jobs/wave-pick
curl https://api.consignlyhq.com/v1/jobs/wave-pick \
--request POST \
--header 'Content-Type: application/json' \
--data '{
"warehouseId": "",
"clientId": "",
"style": "enum (ParallelPicking = 1, BulkPicking = 2)",
"dueDateTime": "",
"priority": "enum (Normal = 2, High = 3, Urgent = 4)",
"reference": null,
"description": null
}'
{
"jobId": "00000000-0000-0000-0000-000000000000"
}