Candidate Information

Name

Ahmed
Munazzil

Email

ahmedmunazzil1@gmail.com

Mobile

+94776525217

date of Birth

March 4, 1996

Are you willing to move to Muscat - Oman?

Yes

Monthly Salary Expectation

USD 2,000.00

Available to Join

Within a Month

Review CV

Candidate Skills

Work Experience

Work
4-6

Development skills

PHP
HTML
CSS
Javascript
Wordpress
Advanced Custom Fields (ACF)
React Native
Firebase
GitHub
RestAPI
Payment Gateway Integration
JSON / XML

Javascript object array

				
					[  {    "add-products": [      
{        "0": {          "product-id": "16",          "quantity": "5",          "price": "25.000"        }      }, 
{        "1": {          "product-id": "17",          "quantity": "7",          "price": "84.000"        }      },      
{        "2": {          "product-id": "15",          "quantity": "10",          "price": "100.000"        }      }    ]   },
  {
    "product-name": "0",
    "quantity": "0",
    "price": "0",
    "object_id": "31"
  }
]
				
			

RestAPI

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

const apiUrl = 'https://your-api-endpoint.com';

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