{"openapi":"3.1.0","info":{"title":"POST /api/v1/customers/analyze-payment-behavior","version":"1.0.0","description":"AI payment behavior analysis"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/customers/analyze-payment-behavior":{"post":{"tags":["customers"],"summary":"AI payment behavior analysis","description":"Get AI-powered customer payment behavior analysis.","operationId":"analyze_payment_behavior_api_v1_customers_analyze_payment_behavior_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}},{"name":"x-business-id","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Business-Id"}}],"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnalyzePaymentBehaviorResponse"}}}},"401":{"description":"Unauthorized - Authentication required","content":{"application/json":{"example":{"detail":"Not authenticated"}}}},"403":{"description":"Forbidden - Insufficient permissions","content":{"application/json":{"example":{"detail":"Not enough permissions"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"AnalyzePaymentBehaviorResponse":{"properties":{"items":{"items":{"$ref":"#/components/schemas/PaymentBehaviorItem"},"type":"array","title":"Items"}},"type":"object","title":"AnalyzePaymentBehaviorResponse"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"PaymentBehaviorItem":{"properties":{"customer_id":{"type":"string","title":"Customer Id","description":"Customer ID"},"customer_name":{"type":"string","title":"Customer Name","description":"Customer name"},"behavior":{"type":"string","title":"Behavior","description":"early, on_time, late, or delinquent"},"avg_days_to_pay":{"type":"number","title":"Avg Days To Pay","description":"Average days to pay"},"predicted_next_payment":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Predicted Next Payment","description":"Predicted next payment date"},"risk_score":{"type":"number","maximum":1.0,"minimum":0.0,"title":"Risk Score","description":"Risk score 0-1"},"recommendation":{"type":"string","title":"Recommendation","description":"Recommended action"}},"type":"object","required":["customer_id","customer_name","behavior","avg_days_to_pay","risk_score","recommendation"],"title":"PaymentBehaviorItem"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"},"input":{"title":"Input"},"ctx":{"type":"object","title":"Context"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}},"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"API Token","description":"API token authentication. Format: `Bearer dz_...`"}}},"security":[{"BearerAuth":[]}]}