{"openapi":"3.1.0","info":{"title":"POST /api/v1/credit-memos/suggest","version":"1.0.0","description":"AI credit memo suggestions"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/credit-memos/suggest":{"post":{"tags":["credit-memos"],"summary":"AI credit memo suggestions","description":"Get AI-powered credit memo suggestions based on customer patterns.","operationId":"suggest_credit_memos_api_v1_credit_memos_suggest_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/SuggestCreditMemosResponse"}}}},"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":{"CreditMemoSuggestionItem":{"properties":{"customer_id":{"type":"string","title":"Customer Id","description":"Customer ID"},"customer_name":{"type":"string","title":"Customer Name","description":"Customer name"},"invoice_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Invoice Id","description":"Related invoice ID"},"reason":{"type":"string","title":"Reason","description":"Reason for credit memo"},"suggested_amount":{"type":"integer","title":"Suggested Amount","description":"Suggested amount in cents"},"pattern":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Pattern","description":"Pattern detected"}},"type":"object","required":["customer_id","customer_name","reason","suggested_amount"],"title":"CreditMemoSuggestionItem"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"SuggestCreditMemosResponse":{"properties":{"suggestions":{"items":{"$ref":"#/components/schemas/CreditMemoSuggestionItem"},"type":"array","title":"Suggestions"}},"type":"object","title":"SuggestCreditMemosResponse"},"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":[]}]}