AMIS CRM API lỗi code 500, trường bố cục không được bỏ trống

bk.nguyenlinh

New Member
Mình có thử tạo khách hàng từ API của ứng dụng "Bán hàng",
Mã:
json_data = [
                                {
                                    # "id": 0,
                                    "form_layout_id": 0,
                                    "owner_id": 0,
                                    "owner_name": None,
                                    "account_name": customer_name,
                                    "account_short_name": customer_code,
                                    "rating": None,
                                    "office_tel": customer.phone,
                                    "office_email": customer.email,
                                    "fax": None,
                                    "website": None,
                                    "parent_account_name": None,
                                    "account_number": customer_code,
                                    "account_type_name": "Khách hàng bán lẻ",
                                    "business_type": "Doanh nghiệp" if tax_code is not None else "Khác",
                                    "sector_name": "Thương mại",
                                    "industry_name": None,
                                    "no_of_employee_name": None,
                                    "annual_revenue": None,
                                    "tax_code": tax_code,
                                    "budget_code": None,
                                    "bank_account": None,
                                    "bank_name": None,
                                    "description": description,
                                    "billing_address": billing_road,
                                    "billing_country": "Việt Nam",
                                    "billing_province": billing_province,
                                    "billing_district": billing_district,
                                    "billing_ward": billing_ward,
                                    "billing_street": billing_address,
                                    "shipping_address": shipping_address,
                                    "shipping_country": "Việt Nam",
                                    "shipping_province": shipping_province,
                                    "shipping_district": shipping_district,
                                    "shipping_ward": shipping_ward,
                                    "shipping_street": shipping_road,
                                    "is_public": True,
                                    "IsDeleted": None,
                                    "parent_account_id": None,
                                    "modified_date": str(date_time),
                                    "modified_by": None,
                                    "created_date": str(date_time),
                                    "created_by": None,
                                    "async_id": str(uuid.uuid4()),
                                    "form_layout_name": "Mẫu tiêu chuẩn",
                                    "organization_unit_id": 0,
                                    "organization_unit_name": self.shop.name,
                                    "is_personal": True if tax_code is not None else False,
                                    "account_product_mappings": None
                                }
                            ]
Nhưng hiện tại thông báo code 500, trường bố cục không được bỏ trống.
Mình xin phép hỏi là "id" có được bỏ trống hay bắt buộc phải điền?
Xin cám ơn
 
Học thêm kiến thức tại: AMIS Blog | MISA Academy
Top