Comment
Find comments
Create comment
Create a new comment.
const response = await geocore.Comment.create({
placeId: 'string',
content: 'content',
});
Prerequisites
Successfully get the IdToken with companyAdmin, groupAdmin or user access level from login API.
Parameters
name type data type description placeId required string Place ID to add comment content required string Comment content
Update comment
Update a comment.
const response = await geocore.Comment.update(
commentId,
{
content: 'content',
},
);
Prerequisites
Successfully get the IdToken with companyAdmin, groupAdmin or user access level from login API.
Parameters
name type data type description commentId required string Comment ID content required string Comment content to update