/quotes/{id}/items/{itemId}Decide an item with recipients
Same decision cascade as the action endpoint, with two extras: `alternative_id` targets one of the item's alternatives, and `recipients` (required on accept) replaces the item's recipient list before the decision runs.
Body
actionrequiredalternative_idrecipientsExample request
json
{
"action": "accept",
"recipients": [
{
"name": "Alex Doe",
"email": "alex@acme.com",
"country": "United States",
"address": "123 Market St, San Francisco, CA 94103"
}
]
}Example response
json
{
"data": {
"id": "8a2b1c3d-4e5f-6071-8293-a4b5c6d7e8f9",
"type": "item",
"status": "accepted"
}
}