action beezup_get_store_tracked_external_orders { label: "Get the latest tracked external orders" provider: beezup method: GET path: "/v2/user/analytics/{storeId}/tracking/externalorders" encoding: json input: { type: "object" properties: { count: { type: "integer" } storeId: { type: "string" format: "guid" } } required: ["storeId"] additionalProperties: false } output: { type: "object" required: ["externalOrders"] properties: { externalOrders: { type: "array" items: { type: "object" required: ["utcDate", "merchantOrderId", "totalAmount", "currencyCode", "paymentValidated"] properties: { currencyCode: { type: "string" description: "The currency code (ISO 4217)\n" } merchantOrderId: { type: "string" description: "The merchant order identifier" } paymentValidated: { type: "boolean" description: "Indicate if the payment of this external order has been validated or not" } products: { type: "array" description: "Can be null. The product list included in the external order" items: { type: "object" required: ["productSku"] properties: { margin: { type: "string" description: "The product's margin for the external order. This property is voluntarily a string because the value could be an invalid one" } productActive: { type: "boolean" description: "We tried to get the catalog product if it's still active based on the product SKU. This property can be null, if we cannot found the product. This is possible if the product is not referenced in the imported catalog." } productId: { type: "string" format: "guid" description: "We tried to get the catalog product identifier based on the product SKU. This property can be null, if we cannot found the product. This is possible if the product is not referenced in the imported catalog." } productImageUrl: { type: "string" format: "uri" description: "We tried to get the catalog product image Url based on the product SKU. This property can be null, if we cannot found the product. This is possible if the product is not referenced in the imported catalog." } productSku: { type: "string" description: "The product sku received for the external order" } productTitle: { type: "string" description: "We tried to get the catalog product title based on the product SKU. This property can be null, if we cannot found the product. This is possible if the product is not referenced in the imported catalog." } quantity: { type: "string" description: "The quantity of this product for the external order. This property is voluntarily a string because the value could be an invalid one" } unitPrice: { type: "string" description: "The product's unit price for the external order. This property is voluntarily a string because the value could be an invalid one." } } } } totalAmount: { type: "number" description: "The total amount of the external order" } utcDate: { type: "string" format: "date-time" description: "The utc date of the external order" } visitorId: { type: "string" description: "Can be null. The visitor identifier of the external order" } } } } } } }