Picks
Get Pick
This endpoint gets a pick
GET
/v1/picks
Bearer*
Body
id
string
This is the unique identifier for the pick.
Response
id
string
This is the unique identifier for the pick
number
string
This is the unique identifier for the pick
date_created
string
This is the unique identifier for the pick
bill_of_materials_number
string
This is the unique identifier for the pick
location
string
This is the unique identifier for the pick
pick_method
string
This is the unique identifier for the pick
site
string
This is the unique identifier for the pick
status
string
This is the unique identifier for the pick
work_order_number
string
This is the unique identifier for the pick
pick_line_items
string
This is the unique identifier for the pick
curl --location --request GET 'https://api.stateset.com/v1/picks' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": "1",
}'
{
"id": "1",
"number": "1",
"date_created": "2021-01-01T00:00:00Z",
"bill_of_materials_number": "1",
"location": "1",
"pick_method": "1",
"site": "1",
"status": "1",
"work_order_number": "1",
"pick_line_items": [
{
"id": "1",
"part_name": "1",
"part_number": "1",
"pick_number": "1",
"pick_plan": "1",
"quantity_picked": "1",
"quantity_to_pick": "1",
"status": "1"
}
]
}
Picks
curl --location --request GET 'https://api.stateset.com/v1/picks' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": "1",
}'
{
"id": "1",
"number": "1",
"date_created": "2021-01-01T00:00:00Z",
"bill_of_materials_number": "1",
"location": "1",
"pick_method": "1",
"site": "1",
"status": "1",
"work_order_number": "1",
"pick_line_items": [
{
"id": "1",
"part_name": "1",
"part_number": "1",
"pick_number": "1",
"pick_plan": "1",
"quantity_picked": "1",
"quantity_to_pick": "1",
"status": "1"
}
]
}