{"openapi":"3.0.0","info":{"title":"DMDesk API","version":"1.0.0","description":"DM order management for social media sellers"},"servers":[{"url":"/api"}],"security":[{"apiKey":[]}],"components":{"securitySchemes":{"apiKey":{"type":"apiKey","in":"header","name":"x-api-key"}}},"paths":{"/health":{"get":{"summary":"Health check","security":[],"responses":{"200":{"description":"OK"}}}},"/stats":{"get":{"summary":"Dashboard statistics","responses":{"200":{"description":"Stats object"}}}},"/orders":{"get":{"summary":"List orders","parameters":[{"name":"status","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Array of orders"}}},"post":{"summary":"Create order","responses":{"201":{"description":"Created order"}}}},"/orders/{id}":{"get":{"summary":"Get order","responses":{"200":{"description":"Order"}}},"put":{"summary":"Update order","responses":{"200":{"description":"Updated order"}}},"delete":{"summary":"Delete order","responses":{"204":{"description":"Deleted"}}}},"/customers":{"get":{"summary":"List customers","responses":{"200":{"description":"Array of customers"}}},"post":{"summary":"Create customer","responses":{"201":{"description":"Created customer"}}}},"/customers/{id}":{"get":{"summary":"Get customer with order history","responses":{"200":{"description":"Customer"}}},"put":{"summary":"Update customer","responses":{"200":{"description":"Updated customer"}}}},"/products":{"get":{"summary":"List products","responses":{"200":{"description":"Array of products"}}},"post":{"summary":"Create product","responses":{"201":{"description":"Created product"}}}},"/products/{id}":{"put":{"summary":"Update product","responses":{"200":{"description":"Updated product"}}}}}}