Box Developerドキュメントの新しいベータ版サイトがまもなくリリースされる予定です。最新の開発者向けガイド、APIリファレンス、AI搭載の検索により、Boxを使用した迅速な開発をサポートします。更新情報については今しばらくお待ちください。
curl -i -X DELETE "https://api.box.com/2.0/comments/12345" \
-H "authorization: Bearer <ACCESS_TOKEN>"await client.comments.deleteCommentById(newComment.id!);client.comments.delete_comment_by_id(new_comment.id)await client.Comments.DeleteCommentByIdAsync(commentId: NullableUtils.Unwrap(newComment.Id));try await client.comments.deleteCommentById(commentId: newComment.id!)client.getComments().deleteCommentById(newComment.getId())await client.Comments.DeleteCommentByIdAsync(commentId: NullableUtils.Unwrap(newComment.Id));await client.comments.deleteCommentById(newComment.id!);