Skip to main content
GET
/
v1
/
rfc-picks
List pick lists
curl --request GET \
  --url http://localhost:3000/v1/rfc-picks
{
  "pick_lists": [
    {
      "id": "<string>",
      "order_id": "<string>",
      "picker_id": "<string>",
      "status": "<string>",
      "started_at": "<string>",
      "completed_at": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "total_items": 123,
      "picked_items": 123,
      "order": {
        "id": "<string>",
        "order_number": "<string>",
        "customer_id": "<string>"
      }
    }
  ],
  "total": 123,
  "message": "<string>"
}

Query Parameters

filter
enum<string>
default:my

Filter pick lists by status

Available options:
my,
available,
completed
Example:

"my"

limit
integer
default:20

Maximum number of results

Required range: 1 <= x <= 100
Example:

20

offset
integer | null
default:0

Offset for pagination

Required range: x >= 0
Example:

0

Response

200 - application/json

List of pick lists

pick_lists
object[]
required
total
number
required
message
string