qiitex v1.0.0 Qiitex.Api.Reaction

Qiita:Team上での絵文字リアクションを表します。Qiita:Teamでのみ有効です。

Link to this section Summary

Functions

コメントに絵文字リアクションを付けます。

記事に絵文字リアクションを付けます。

プロジェクトに絵文字リアクションを付けます。

コメントから絵文字リアクションを削除します。

記事から絵文字リアクションを削除します。

プロジェクトから絵文字リアクションを削除します。

コメントに付けられた絵文字リアクション一覧を作成日時の降順で返します。

記事に付けられた絵文字リアクション一覧を作成日時の降順で返します。

プロジェクトに付けられた絵文字リアクション一覧を作成日時の降順で返します。

Link to this section Functions

Link to this function

create_comment_reaction(client, comment_id, params)

コメントに絵文字リアクションを付けます。

POST /api/v2/comments/:comment_id/reactions

  • name

    • 絵文字の識別子
    • example: +1
    • type: string
Link to this function

create_item_reaction(client, item_id, params)

記事に絵文字リアクションを付けます。

POST /api/v2/items/:item_id/reactions

  • name

    • 絵文字の識別子
    • example: +1
    • type: string
Link to this function

create_project_reaction(client, project_id, params)

プロジェクトに絵文字リアクションを付けます。

POST /api/v2/projects/:project_id/reactions

  • name

    • 絵文字の識別子
    • example: +1
    • type: string
Link to this function

delete_comment_reaction(client, comment_id, reaction_name)

コメントから絵文字リアクションを削除します。

DELETE /api/v2/comments/:comment_id/reactions/:reaction_name

Link to this function

delete_item_reaction(client, item_id, reaction_name)

記事から絵文字リアクションを削除します。

DELETE /api/v2/items/:item_id/reactions/:reaction_name

Link to this function

delete_project_reaction(client, project_id, reaction_name)

プロジェクトから絵文字リアクションを削除します。

DELETE /api/v2/projects/:project_id/reactions/:reaction_name

Link to this function

list_comment_reactions(client, comment_id)

コメントに付けられた絵文字リアクション一覧を作成日時の降順で返します。

GET /api/v2/comments/:comment_id/reactions

Link to this function

list_item_reactions(client, item_id)

記事に付けられた絵文字リアクション一覧を作成日時の降順で返します。

GET /api/v2/items/:item_id/reactions

Link to this function

list_project_reactions(client, project_id)

プロジェクトに付けられた絵文字リアクション一覧を作成日時の降順で返します。

GET /api/v2/projects/:project_id/reactions