{"openapi":"3.1.0","info":{"title":"POST /api/v1/customers","version":"1.0.0","description":"Create customer"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/customers":{"post":{"tags":["customers"],"summary":"Create customer","description":"Create a new customer record for the business.","operationId":"create_customer_api_v1_customers_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"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CustomerCreateRequest"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CustomerResponse"}}}},"400":{"description":"Bad Request - Invalid input","content":{"application/json":{"example":{"detail":"Invalid request parameters"}}}},"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":{"CounterpartyStatus":{"type":"string","enum":["active","inactive","blocked"],"title":"CounterpartyStatus","description":"Status values for customers and vendors."},"CustomerContactResponse":{"properties":{"id":{"type":"string","title":"Id","description":"Contact UUID."},"customer_id":{"type":"string","title":"Customer Id","description":"Customer UUID."},"name":{"type":"string","title":"Name","description":"Contact name."},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email","description":"Contact email."},"phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone","description":"Contact phone."},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role","description":"Contact role (e.g., 'Billing', 'Technical')."},"is_primary":{"type":"boolean","title":"Is Primary","description":"Whether this is the primary contact.","default":false},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes","description":"Notes about this contact."},"created_at":{"type":"string","format":"date-time","title":"Created At","description":"Creation timestamp."},"updated_at":{"type":"string","format":"date-time","title":"Updated At","description":"Last update timestamp."}},"type":"object","required":["id","customer_id","name","created_at","updated_at"],"title":"CustomerContactResponse","description":"Response schema for a customer contact."},"CustomerCreateRequest":{"properties":{"name":{"type":"string","maxLength":255,"title":"Name","description":"Customer name (person or company)."},"email":{"type":"string","format":"email","title":"Email","description":"Customer email for invoices and communications."},"address":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}],"title":"Address","description":"Customer billing/shipping address."},"phone":{"anyOf":[{"type":"string","maxLength":50},{"type":"null"}],"title":"Phone","description":"Customer phone number."},"tax_id":{"anyOf":[{"type":"string","maxLength":50},{"type":"null"}],"title":"Tax Id","description":"Tax identification number (EIN, VAT, etc.)."},"website":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Website","description":"Customer website URL."},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes","description":"Internal notes about this customer."},"credit_limit_cents":{"anyOf":[{"type":"integer","minimum":0.0},{"type":"null"}],"title":"Credit Limit Cents","description":"Credit limit in cents (e.g., 100000 = $1,000.00)."},"default_payment_term_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Default Payment Term Id","description":"Default payment term ID for new invoices."},"status":{"$ref":"#/components/schemas/CounterpartyStatus","description":"Customer status (active, inactive, blocked).","default":"active"},"category":{"anyOf":[{"type":"string","maxLength":100},{"type":"null"}],"title":"Category","description":"Business category (e.g., 'Retail', 'Wholesale')."},"invoice_footer":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Invoice Footer","description":"Custom invoice footer/payment instructions for this customer. Overrides business default."}},"type":"object","required":["name","email"],"title":"CustomerCreateRequest","description":"Request schema for creating a new customer.\n\nCustomers are the people or companies you sell to and invoice.\nSupports credit limits, default payment terms, tax IDs, and categorization.","example":{"address":"123 Main Street, Suite 100, San Francisco, CA 94102","category":"Wholesale","credit_limit_cents":1000000,"email":"billing@acme.com","name":"Acme Corporation","notes":"Preferred customer, always pays on time","phone":"(555) 123-4567","status":"active","tax_id":"12-3456789","website":"https://acme.com"}},"CustomerResponse":{"properties":{"id":{"type":"string","title":"Id","description":"Customer UUID."},"business_id":{"type":"string","title":"Business Id","description":"Business UUID."},"created_at":{"type":"string","format":"date-time","title":"Created At","description":"Creation timestamp."},"updated_at":{"type":"string","format":"date-time","title":"Updated At","description":"Last update timestamp."},"name":{"type":"string","title":"Name","description":"Customer name."},"email":{"type":"string","title":"Email","description":"Customer email."},"address":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Address","description":"Customer address."},"phone":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone","description":"Customer phone number."},"tax_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tax Id","description":"Tax identification number."},"website":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Website","description":"Customer website URL."},"notes":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Notes","description":"Internal notes."},"credit_limit_cents":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Credit Limit Cents","description":"Credit limit in cents."},"default_payment_term_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Default Payment Term Id","description":"Default payment term ID."},"status":{"type":"string","title":"Status","description":"Customer status.","default":"active"},"category":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Category","description":"Business category."},"is_deleted":{"type":"boolean","title":"Is Deleted","description":"Whether customer is soft deleted.","default":false},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At","description":"Timestamp when customer was deleted."},"stripe_customer_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Stripe Customer Id","description":"Linked Stripe customer ID."},"invoice_footer":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Invoice Footer","description":"Custom invoice footer/payment instructions for this customer."},"contacts":{"anyOf":[{"items":{"$ref":"#/components/schemas/CustomerContactResponse"},"type":"array"},{"type":"null"}],"title":"Contacts","description":"Customer contacts."}},"additionalProperties":true,"type":"object","required":["id","business_id","created_at","updated_at","name","email"],"title":"CustomerResponse","description":"Response schema for a customer.\n\nContains customer details and any linked external IDs.","example":{"address":"123 Main Street, Suite 100, San Francisco, CA 94102","business_id":"019ab37c-bus1-7000-8000-000000000001","category":"Wholesale","created_at":"2024-01-10T10:30:00Z","credit_limit_cents":1000000,"email":"billing@acme.com","id":"019ab37c-cust-7000-8000-000000000001","name":"Acme Corporation","phone":"(555) 123-4567","status":"active","stripe_customer_id":"cus_Abc123XYZ","tax_id":"12-3456789","updated_at":"2024-01-15T14:00:00Z","website":"https://acme.com"}},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"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":[]}]}