Last active
July 7, 2016 04:49
-
-
Save will-yama/330bf9ca6dc056b0b579fc9e0d721d69 to your computer and use it in GitHub Desktop.
Get 10 Comments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var body = { | |
"app": kintone.app.getId(), | |
"record": kintone.app.record.getId() | |
}; | |
kintone.api(kintone.api.url('/k/v1/record/comments', true), 'GET', body, function(resp) { | |
// success | |
console.log(resp); | |
}, function(error) { | |
// error | |
console.log(error); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment