get record from CDS powerapps portal

Talha Manzoor
0

 $( document ).ready(function() {

$.ajax({   


                    type'GET',  


                    url: "/_api/cr207_kspsalesorders?$filter=(statecode eq 0)&$top=50",  


                    dataType: 'json',  


                    success: function (res) {


                        results = res.value;


                        console.log(results);


                    }});


});

Post a Comment

0Comments

Post a Comment (0)