Postgres SQL

#Postgres SQL

get record from CDS powerapps portal

 $( 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);                     }}); }); get record

get record from CDS powerapps portal Read More »