Guest-friendly tracking: an order_number + phone must BOTH match.
POST
/v1/commerce/track/
const url = 'https://api.nudova.dev/api/v1/commerce/track/';const options = {method: 'POST', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.nudova.dev/api/v1/commerce/track/ \ --header 'Authorization: <Authorization>'Tenant-scoped (the scoped manager only sees this store’s orders), so a matching number from another tenant is invisible. A phone mismatch returns nothing, so an order number alone can’t be used to enumerate orders.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Media typeapplication/json