function updateStatus (recordID) { | |
var url = "https://api.fulcrumapp.com/api/v2/records/" + recordID + ".json?token=" + fulcrumAPIkey; | |
var options = { | |
"method": "GET", | |
"contentType": "application/json" | |
}; | |
var recordJSON = UrlFetchApp.fetch(url, options); | |
// Update record with status info | |
var record = JSON.parse(recordJSON); | |
record.record.status = "Needs A Re-Visit"; | |
// PUT updated record to Fulcrum | |
var url = "https://api.fulcrumapp.com/api/v2/records/" + recordID + ".json?token=" + fulcrumAPIkey; | |
var options = { | |
"method": "PUT", | |
"contentType": "application/json", | |
"payload": JSON.stringify(record) | |
}; | |
var recordJSON = UrlFetchApp.fetch(url, options); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment