JSFiddle - React, Tailwind, and code Playground

by Ajit Sharma

JavaScript

$.ajax({
    url:"https://api.sandbox.paypal.com/retail/merchant/v1/locations",
dataType: 'json',
    type:'POST',
    success: function(data) 
	{ 
									
    console.log(data);		
	alert("success",data);
	},
	error: function(data)
	{
	alert("fail",data);
	console.log(data);
	alert("Sorry..Please try again later");							   
    }, 
	});