Candidate Information

Name

nuwan
priyamal

Email

nuwanpriyamal@gmail.com

Mobile

+94710891276

date of Birth

December 4, 1997

Are you willing to move to Muscat - Oman?

No

Monthly Salary Expectation

USD 1,000.00

Available to Join

Within a Month

Review CV

Candidate Skills

Work Experience

Work
1-3

Development skills

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

Javascript object 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"  }]
				
			

RestAPI

				
					const products = [
  {
    "product-id": "16",
    "quantity": "5",
    "price": "25.000"
  },
  {
    "product-id": "17",
    "quantity": "7",
    "price": "84.000"
  },
  {
    "product-id": "15",
    "quantity": "10",
    "price": "100.000"
  }
];

const apiUrl = 'https://yourdomain.com/api/products';

fetch(apiUrl, {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify(products)
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error(error));