詳細はasana Developersの公式サイトの
API Reference に記載されている一部を表にしたものです
asanaにログインした状態で各idを指定して開くと情報を取得できます
I share this blog with my thoughts and creations from my daily programming, knowledge, and technology updates.
ワークスペース一覧を取得する | https://app.asana.com/api/1.0/workspaces |
プロジェクト一覧を取得する | https://app.asana.com/api/1.0/projects |
プロジェクトを指定してタスク一覧を取得する | https://app.asana.com/api/1.0/projects/project-id/tasks |
プロジェクトを指定してセクション一覧を取得する | https://app.asana.com/api/1.0/projects/project-id/sections |
タスクを指定して更新履歴一覧を取得する | https://app.asana.com/api/1.0/tasks/task-id/stories |
タスクを指定してサブタスクを取得する | https://app.asana.com/api/1.0/tasks/task-id/subtasks |
タグ一覧を取得する | https://app.asana.com/api/1.0/tags |
ユーザ一覧を取得する | https://app.asana.com/api/1.0/users |
自分のユーザ情報を取得する | https://app.asana.com/api/1.0/users/me |
記述式の質問には「回答の検証」を設定することができます フォームの編集画面 右下の︙メニューで「回答の検証」を選択します 検証方法には「数値」「テキスト」「長さ」「正規表現」という種類があります 今回は字数制限したいので「長さ」を選びます 長さには「最大文字数」か「最小文字数」を...