Fulfill order
POST
/partners/{id}/orders/{order_id}/fulfill
const url = 'https://example.com/partners/example/orders/example/fulfill';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"barcode":"example","location_id":"example","station_id":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/partners/example/orders/example/fulfill \ --header 'Content-Type: application/json' \ --data '{ "barcode": "example", "location_id": "example", "station_id": "example" }'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
order_id
required
string
Request Body required
Section titled “Request Body required ”Responses
Section titled “ Responses ” Media type application/json
object
id
required
string
sku
required
string
name
required
string
price
required
created_at
required
string
updated_at
required
string
Example
{ "price": "NaN", "quantity": "NaN", "fulfilled": "NaN"}