Method | Description | |
---|---|---|
AddCommentToObject ( string type, int id, |
Adds a new comment to the object of the given type and id, f.ex. item 1. Podio API Reference: https://developers.podio.com/doc/comments/add-comment-to-object-22340
|
|
AddCommentToObject ( string type, int id, string text, string externalId = null, List |
Adds a new comment to the object of the given type and id with no reference to other objects Podio API Reference: https://developers.podio.com/doc/comments/add-comment-to-object-22340
|
|
CommentService ( Podio currentInstance ) : System.Collections.Generic | ||
DeleteComment ( int commentId ) : Task |
Deletes a comment made by a user. This can be used to retract a comment that was made and which the user regrets. Podio API Reference: https://developers.podio.com/doc/comments/delete-a-comment-22347
|
|
GetComment ( int commentId ) : Task |
Returns the contents of a comment. It is not possible to see where the comment was made, only the comment itself. Podio API Reference: https://developers.podio.com/doc/comments/get-a-comment-22345
|
|
GetCommentsOnObject ( string type, int id ) : Task
|
Used to retrieve all the comments that have been made on an object of the given type and with the given id. It returns a list of all the comments sorted in ascending order by time created. Podio API Reference: https://developers.podio.com/doc/comments/get-comments-on-object-22371
|
|
UpdateComment ( int commentId, |
Updates an already created comment. This should only be used to correct spelling and grammatical mistakes in the comment.
|
|
UpdateComment ( int commentId, string text, string externalId = null, List |
Updates an already created comment. This should only be used to correct spelling and grammatical mistakes in the comment. Podio API Reference: https://developers.podio.com/doc/comments/update-a-comment-22346
|
public AddCommentToObject ( string type, int id, |
||
type | string | |
id | int | |
comment | ||
alertInvite | bool | /// True if any mentioned user should be automatically invited to the workspace if the user does /// not have access to the object and access cannot be granted to the object. Default value: false /// |
silent | bool | /// If set to true, the object will not be bumped up in the stream and notifications will not be /// generated. Default value: false /// |
hook | bool | |
return | Task |
public AddCommentToObject ( string type, int id, string text, string externalId = null, List |
||
type | string | |
id | int | |
text | string | The comment to be made |
externalId | string | The external id of the comment |
fieldIds | List |
Temporary files that have been uploaded and should be attached to this comment |
embedUrl | string | The url to be attached |
embedId | int | /// The id of an embedded link that has been created with the Add an embed operation in the Embed /// area /// |
alertInvite | bool | /// True if any mentioned user should be automatically invited to the workspace if the user does /// not have access to the object and access cannot be granted to the object. Default value: false /// |
silent | bool | /// If set to true, the object will not be bumped up in the stream and notifications will not be /// generated. Default value: false /// |
hook | bool | |
return | Task |
public CommentService ( Podio currentInstance ) : System.Collections.Generic | ||
currentInstance | Podio | |
return | System.Collections.Generic |
public DeleteComment ( int commentId ) : Task |
||
commentId | int | |
return | Task |
public GetCommentsOnObject ( string type, int id ) : Task
|
||
type | string | |
id | int | |
return | Task
|
public UpdateComment ( int commentId, |
||
commentId | int | |
comment | ||
return | Task |
public UpdateComment ( int commentId, string text, string externalId = null, List |
||
commentId | int | |
text | string | The comment to be made |
externalId | string | The external id of the comment |
fieldIds | List |
Temporary files that have been uploaded and should be attached to this comment |
embedUrl | string | The url to be attached |
embedId | int | /// The id of an embedded link that has been created with the Add an embed operation in the Embed /// area /// |
return | Task |