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

Path Parameters

id
string<uuid>
required

Pick list ID

Body

application/json
cart_id
string
required

Cart ID (taxonomy ID) to assign to the pick list

Minimum string length: 1
Example:

"012000000100001000"

Response

Cart assigned successfully

success
boolean
required
cart
unknown
message
string
error
string