Get all records
this function returns all the records. Pagination / limit are not accepted
Arguments
get
Get one record based on id
Arguments
id
integer, required
delete
Delete one record
Arguments
id
string, required
changelog
Get Change Log for an object
Arguments
id
integer, required
search
Search function
Arguments
getComments
Get Comments related to an object -
@param id is the object id and not the comment id
Arguments
id
integer, required
getComment
Get one comment
@param id is the object id
Arguments
id
integer, required
comment_id
integer, required
addComment
Add a comment to an object
@param id: id of the object to which a comment should be added
@param comment: text of the comment
Arguments
id
integer, required
comment
string, required
updateComment
Update a comment
@params comment_id is the id previously returned by getcomments
@param comment: text of the comment
@param id: id of the object to which a comment should be added
Arguments
id
integer, required
comment_id
integer, required
comment
string, required
deleteComment
Delete a comment
@params comment_id is the id previously returned by getcomments