I am using shopify api services to build a project, the problem is that i don’t see any service that can helped me in achieving this.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Orders cannot be merged in Shopify. You can create multiple fulfillments for an order though, with a combination of the line items in the order. Each line item from an order can only be fulfilled once.
This accomplished by creating a fulfillment request and specifying which line items to fulfill.
POST /admin/orders/#{id}/fulfillments.json
{
“fulfillment”: {
“tracking_number”: null,
“line_items”: [
{
“id”: 466157049
}
]
}
}