
Retrieves detailed Order Desk order information using a Shopify order number for quick order lookup and management.
This integration searches Order Desk for ord... Read More
Retrieves detailed Order Desk order information using a Shopify order number for quick order lookup and management.
This integration searches Order Desk for order details using a Shopify order number. It returns comprehensive order information including customer details, shipping address, order items with product information, payment status, and fulfillment details. This is useful for customer service teams who need to quickly access complete order information when customers reference their Shopify order number.
Returns detailed order information including id (Order Desk order ID), email, customer and shipping address details, order_items array with product codes, names, prices, and metadata, order_total, payment_status, date_added, shipping_method, and order_metadata containing Shopify-specific information like tags and fulfillment status.
Example Output:
{
"orders": [{
"id": "4347806675",
"email": "customer@example.com",
"customer": {
"first_name": "Jane",
"last_name": "Smith",
"address1": "123 Main Street",
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country": "US",
"phone": "555-123-4567"
},
"shipping": {
"first_name": "Jane",
"last_name": "Smith",
"address1": "123 Main Street",
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country": "US",
"phone": "555-123-4567"
},
"source_id": "#419969",
"order_items": [{
"id": "388505985",
"code": "PROD001",
"name": "Sample Product Name",
"price": 29.99,
"quantity": 1,
"weight": 0.25
}],
"order_total": 29.99,
"payment_status": "Approved",
"shipping_method": "Standard",
"date_added": "2024-08-02 16:19:32"
}],
"status": "success",
"total_records": 1
} Read LessMoves an OrderDesk order from one folder to another for better organization and workflow management.
This integration transfers an OrderDesk order from its curr... Read More
Moves an OrderDesk order from one folder to another for better organization and workflow management.
This integration transfers an OrderDesk order from its current folder to a different folder within your store. This is useful for organizing orders by status, priority, or workflow stage – such as moving orders from “Processing” to “Shipped” or from “Active” to “Canceled”.
Returns a success confirmation with details about the move operation, including status, message (summary of the action), results array containing the move details with message (specific action taken), order_id (the moved order), and original_folder_id (where it came from), plus execution_time for the operation.
Example Output:
{
"status": "success",
"message": "1 Order Moved",
"results": [
{
"message": "Order Moved to Fulfilled Folder",
"order_id": 8239471856,
"original_folder_id": 298647
}
],
"execution_time": "0.0431 seconds"
} Read LessFor information on getting the appropriate Integration credentials, visit the Order Desk site directly.