What's your biggest current challenge? Have your say in Community Polls along the right column.
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Get entity id after create

Get entity id after create

mberick
Shopify Partner
1 0 0
I'm trying to create a draft order, using the REST API, but i can't get the response from shopify. How can I get the ID after save the draft order?

 

 

 

$draftOrder = new DraftOrder($shopifySession);
$draftOrder->line_items = $line_items;
$draftOrder->customer = ["id" => $customer_id];
$response = $draftOrder->save();
dd($response) // OBJECT WAS CREATED BUT THE RESPONSE IS NULL

 

 

 

Replies 0 (0)