/api/v1/app/{app_id}/record/{record_id}/comment
Method : POST
access_token
(required, header parameter)
Send this as header – e.g.“Authorization: Bearer access_token”app_id
(required, path parameter)
Application Id of the recordrecord_id
(required, path parameter)
Record Id where the comment needs to be addedcomment
(required, body parameter)
Comment text to be added to the recordcurl -H "Authorization: Bearer {access_token}" -X POST https://my.worksmart.app/api/v1/app/1234/record/1/comment -d 'comment=New comment'