AME-SM Api

Product: Get all product

https://www.ameinsure.com/api/Product/getproduct
Post
{
'token' => string, **
search_txt => string (name of brand)
}
{
'code' => string (0x0000-00000 when success),
'message' => string,
'data' => array (
'id' => Id of model,
'name' => string,
'total_round' => int,
'down_payment_percent' => decimal
)
}
{
'code' : '0x0000-00000',
'message' : 'Success',
'data' : [
{
'id' : '1',
'name' : '3B',
'total_round' : '3',
'down_payment_percent' : '0.30'
},
...
)
}