Candidate Information

Name

Rusiru
Nethmina

Email

rusiruc21@gmail.com

Mobile

0765381452

date of Birth

December 7, 1998

Are you willing to move to Muscat - Oman?

Yes

Monthly Salary Expectation

USD 1,800.00

Available to Join

Within Three Weeks

Review CV

Candidate Skills

Work Experience

Work
1-3

Development skills

PHP
HTML
CSS
Javascript
Wordpress
Elementor
React Native
Firebase
GitHub
Python
RestAPI
Payment Gateway Integration
JSON / XML

Javascript object array

				
					const data = {
  product_array: [
    {
      "product-id": "16",
      "quantity": "5",
      "price": "25.000",
    },
    {
      "product-id": "17",
      "quantity": "7",
      "price": "84.000",
    },
    {
      "product-id": "15",
      "quantity": "10",
      "price": "100.000",
    },
  ],
  "current_products" : {
    "object_id": "31",
    "price ": "0",
    "quantity ": "0",
    "product-name ": "0",
  }
};

console.log(data);
				
			

RestAPI

				
					$.ajax({
    type:'POST',
    url: 'https://yourdomain.com/products/add-products',
    dataType: 'json',
    data: JSON.stringify(data),
    contentType: "application/json; charset=utf-8",
    success: function(data) { 
        $("#abc").html(dumpObj(data,"Result",'',0));
         }
    })