Description
need help, trying to create order with code below. However i'm only able to create a single order. I have tried to call the function many times and for past 3 days, but it always return back the same order i created few days ago.
shopify.order.create(
{
//"user_id" : "gkash user id",
"order_id": 51,
//"api_version" : "2024-01",
// "id": 550789470,
"created_at": "2024-01-11T12:40:09+08:00",
"name": "A0051",
"number": 51,
"order_number": 51,
"kind": "sale",
"status": "success",
// "amount": 238.47,
"reference" : "gkash",
"source_name" : "gkash_source",
"processing_method" : "gkash_method",
//"device_id" : "gkash_terminal_id",
//"gateway" : "gkash_gateway",
"note" : "this is a detail note from gkash",
"tags": "Léon, Noël",
//"name" : "A001",
"note_attributes": [
{
"name": "custom engraving",
"value": "Happy Birthday"
},
{
"name": "colour",
"value": "green"
}
],
"line_items" : [
{
"title" : "Big Brown Bear Boots",
"price" : 74.99,
//"grams" : "1300",
"quantity": 1,
// "tax_lines": [
// {
// "price": 13.5,
// "rate": 0.06,
// "title": "State tax"
// }
// ]
}
]
}
)
.then((order) => {
res.send(order)
})
.catch((err) => {
res.send(err)
});
Activity