Create a new comment base, or retrieve an existing one.
Parameters:
json_body (Union[CreateInlineCommentData, CreateGeneralCommentData]) – The body of the request. See
CreateCommentData for information about the possible
fields. You can provide this data as a CreateCommentData
or as a dictionary.
CommentService#
Create a new comment base, or retrieve an existing one.
json_body (
Union
[CreateInlineCommentData
,CreateGeneralCommentData
]) – The body of the request. SeeCreateCommentData
for information about the possible fields. You can provide this data as aCreateCommentData
or as a dictionary.self (CommentService[AuthenticatedClient]) –
The just created comment base.
InlineFeedbackCommentBaseWithExtendedReplies | GeneralFeedbackCommentBaseWithExtendedReplies
Add a reply to a comment base.
json_body (
CreateCommentReplyData
) – The body of the request. SeeCreateCommentReplyData
for information about the possible fields. You can provide this data as aCreateCommentReplyData
or as a dictionary.comment_base_id (
int
) – The id of the base to which you want to add a reply.self (CommentService[AuthenticatedClient]) –
The just created reply.
ExtendedNonDeletedCommentReply | DeletedCommentReply
Delete the given reply.
comment_base_id (
int
) – The base of the given reply.reply_id (
int
) – The id of the reply to delete.self (CommentService[AuthenticatedClient]) –
Nothing.
None
Update the content of a reply.
json_body (
PatchCommentReplyData
) – The body of the request. SeePatchCommentReplyData
for information about the possible fields. You can provide this data as aPatchCommentReplyData
or as a dictionary.comment_base_id (
int
) – The base of the given reply.reply_id (
int
) – The id of the reply for which you want to update.self (CommentService[AuthenticatedClient]) –
The just updated reply.
ExtendedNonDeletedCommentReply | DeletedCommentReply
Get the edits of a reply.
comment_base_id (
int
) – The base of the given reply.reply_id (
int
) – The id of the reply for which you want to get the edits.page_size (
int
) – The size of a single page, maximum is 50.self (CommentService[AuthenticatedClient]) –
A list of edits, sorted from newest to oldest.
Response[CommentReplyEdit]
Update the approval status of a reply.
comment_base_id (
int
) – The base of the given reply.reply_id (
int
) – The id of the reply for which you want to update the approval.self (CommentService[AuthenticatedClient]) –
The just updated reply.
ExtendedNonDeletedCommentReply | DeletedCommentReply
Update the approval status of a reply.
comment_base_id (
int
) – The base of the given reply.reply_id (
int
) – The id of the reply for which you want to update the approval.self (CommentService[AuthenticatedClient]) –
The just updated reply.
ExtendedNonDeletedCommentReply | DeletedCommentReply