hi @KyleG-Shopify the order was created with Order - REST
here are the order events
{"order" =>
{"events" =>
{"edges" =>
[{"node" =>
{"__typename" => "BasicEvent",
"id" => "gid://shopify/BasicEvent/135745925087409",
"action" => "placed",
"message" => "M***iana A***a B***i C** M** placed this order on Easy Shopee, TikTok & Lazada.",
"createdAt" => "2025-07-16T15:41:11Z",
"appTitle" => "Easy Shopee, TikTok & Lazada",
"attributeToApp" => true,
"attributeToUser" => false,
"criticalAlert" => false}},
{"node" =>
{"__typename" => "BasicEvent",
"id" => "gid://shopify/BasicEvent/135745925120177",
"action" => "confirmation_number_generated",
"message" => "Confirmation #QWIQ0XA7Y was generated for this order.",
"createdAt" => "2025-07-16T15:41:11Z",
"appTitle" => "Easy Shopee, TikTok & Lazada",
"attributeToApp" => false,
"attributeToUser" => false,
"criticalAlert" => false}},
{"node" =>
{"__typename" => "BasicEvent",
"id" => "gid://shopify/BasicEvent/135745925218481",
"action" => "note_created",
"message" => "Easy Shopee, TikTok & Lazada added a note to this order.",
"createdAt" => "2025-07-16T15:41:12Z",
"appTitle" => "Easy Shopee, TikTok & Lazada",
"attributeToApp" => true,
"attributeToUser" => false,
"criticalAlert" => false}},
{"node" =>
{"__typename" => "BasicEvent",
"id" => "gid://shopify/BasicEvent/135745986560177",
"action" => "confirmed",
"message" =>
"Received new order <a href=\"https://05a2f9-2.myshopify.com/admin/orders/6002887098545\">#146945</a>.",
"createdAt" => "2025-07-16T15:43:02Z",
"appTitle" => nil,
"attributeToApp" => false,
"attributeToUser" => false,
"criticalAlert" => false}},
{"node" =>
{"__typename" => "BasicEvent",
"id" => "gid://shopify/BasicEvent/135746205843633",
"action" => "refund_restock",
"message" => "Easy Shopee, TikTok & Lazada restocked 1 item at 1 location.",
"createdAt" => "2025-07-16T15:49:54Z",
"appTitle" => "Easy Shopee, TikTok & Lazada",
"attributeToApp" => true,
"attributeToUser" => false,
"criticalAlert" => false}},
{"node" =>
{"__typename" => "BasicEvent",
"id" => "gid://shopify/BasicEvent/135746205974705",
"action" => "refund_created",
"message" => "Easy Shopee, TikTok & Lazada refunded 1 item and shipping.",
"createdAt" => "2025-07-16T15:49:54Z",
"appTitle" => "Easy Shopee, TikTok & Lazada",
"attributeToApp" => true,
"attributeToUser" => false,
"criticalAlert" => false}},
{"node" =>
{"__typename" => "BasicEvent",
"id" => "gid://shopify/BasicEvent/135746206040241",
"action" => "closed",
"message" => "Easy Shopee, TikTok & Lazada archived this order.",
"createdAt" => "2025-07-16T15:49:54Z",
"appTitle" => "Easy Shopee, TikTok & Lazada",
"attributeToApp" => true,
"attributeToUser" => false,
"criticalAlert" => false}},
{"node" =>
{"__typename" => "BasicEvent",
"id" => "gid://shopify/BasicEvent/135746206171313",
"action" => "cancelled",
"message" => "Easy Shopee, TikTok & Lazada canceled this order.",
"createdAt" => "2025-07-16T15:49:54Z",
"appTitle" => "Easy Shopee, TikTok & Lazada",
"attributeToApp" => true,
"attributeToUser" => false,
"criticalAlert" => false}}]}}}
with query
query ($orderId: ID!) {
order(id: $orderId) {
events(first: 250) {
edges {
node {
id
action
message
createdAt
appTitle
attributeToApp
attributeToUser
criticalAlert
}
}
}
}
}