Description
Good morning
Just a feature request for the JSON request structure. I like the way the generation for API documentation grabs the request rules.
Would like to just see it in JSON object format.
from this:
{ "dealership.dealership_group_id": "", "company.brand_name": "", "company.trading_name": "", "company.registered_name": "", "company.reg_no": "", "company.vat_no": "", "company.email": "", "company.telephone": "", "company.website_url": "", "address.unit_no": "", "address.line1": "", "address.line2": "", "address.post_code": "", "address.province": "", "address.country": "" }
To this:
{ "dealership":{ "dealership_group_id":"" }, "company":{ "brand_name":"", "trading_name":"", "registered_name":"", "reg_no":"", "vat_no":"", "email":"", "telephone":"", "website_url":"" }, "address":{ "unit_no":"", "line1":"", "line2":"", "post_code":"", "province":"", "country":"" } }