JordanBeatty1
7 years agoQrew Captain
How to send API_GetRecordInfo response elsewhere
I run this script on the record
var dbid = "xxxxxx";And it is returning an XML document containing all the fields and their values for the record as predicted. Though, now I would like to send the retrieved XML document else where. Is their a best way to do this within Quickbase? I am not totally sure on how to do this. All I have been given currently is a URL of where to send it to, and googling hasn't gotten me very far yet
console.log(kRid);
var promise = $.post(dbid, {
act: "API_GetRecordInfo",
rid: kRid,
});
$.when(promise).then(function(xml) {
console.dirxml(xml);
console.log($("errcode", response).text());
});