Skip to main content
POST
/
v1
/
rfc-picks
/
{id}
Perform pick list action
curl --request POST \
  --url http://localhost:3000/v1/rfc-picks/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "action": "start"
}
'
{
  "success": true,
  "pick_list": "<unknown>",
  "error": "<string>",
  "message": "<string>"
}

Path Parameters

id
string<uuid>
required

Pick list ID

Body

application/json
action
enum<string>
required

Action to perform on pick list

Available options:
claim,
start,
complete
Example:

"start"

Response

Action performed successfully

success
boolean
required
pick_list
unknown
error
string
message
string