Create a new customer in the system
curl --location 'https://api.example.com/api/customers/create' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer YOUR_TOKEN' \ --data-raw '{ "name": "Acme Corporation", "legal_name": "Acme Corp Ltd.", "tax_id": "ABC123456789", "contact_origin": "WEB_FORM" }'
{ "success": true, "customer": { "customer_id": 123, "name": "Acme Corporation", "legal_name": "Acme Corp Ltd.", "tax_id": "ABC123456789", "contact_origin": "WEB_FORM", "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-15T10:30:00Z" } }
Show Customer Object