Is there any api to get data from knack and upload data into knack
Mukesh- check knack API documentation you can find that .
https://www.knack.com/developer-documentation/#working-with-fields
Thanks
Thank You for this ..
I have some doubt ..
from where i get url
Hi Mukesh,
Please check
If there is no security issue to explore API key you can use below code. Otherwise need to use knack forms .
Get data from knack
$.ajax({
url: ObjectURL,
type: "GET",
headers: { 'X-Knack-Application-Id': API_ID, 'X-Knack-REST-API-Key': API_Key },
success: function (response) {
}
});
Post data into knack
$.ajax({
url: url, // + record.id,
type: "POST",
headers: {
'X-Knack-Application-Id': API_ID, // change to your app's API info
'X-Knack-REST-API-Key': API_Key
},
data: data,
success: function (response) {
}
});
Thanks,
Sunny Singla
+919855089359