Skip to main content
Skip to main content

updateFulfillment - Fulfillment Module Reference

This documentation provides a reference to the updateFulfillment method. This belongs to the Fulfillment Module.

This method updates an existing fulfillment.

Example

const fulfillment =
await fulfillmentModuleService.updateFulfillment(
"ful_123",
{
location_id: "loc_123",
}
)

Parameters

idstringRequired
The ID of the fulfillment.
The attributes to update in the fulfillment.
sharedContextContext
A context used to share resources, such as transaction manager, between the application and the module.

Returns

PromisePromise<FulfillmentDTO>Required
The updated fulfillment.
Was this section helpful?