Skip to content

Instantly share code, notes, and snippets.

@kongou-ae
Last active June 30, 2017 14:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kongou-ae/7f5aba4c6a61379781a8b70218531b2e to your computer and use it in GitHub Desktop.
Save kongou-ae/7f5aba4c6a61379781a8b70218531b2e to your computer and use it in GitHub Desktop.

所属しているグループ一覧

https://graph.microsoft.com/v1.0/me/memberOf/$/microsoft.graph.group?$filter=groupTypes/any(a:a%20eq%20'unified')

グループの会話一覧

https://graph.microsoft.com/v1.0/groups/627e6b98-792a-4df1-ae6a-d3d2d9e999ce/conversations

タスクを追加しただけだとグループの会話が出ない

Plannerのタスクを取得する

https://graph.microsoft.com/beta/me/tasks

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#tasks",
    "@odata.count": 10,
    "value": [
        {
            "@odata.etag": "W/\"JzEtMDAwMDAwMDAwMDAwMDAwOC8yMDE3LTA2LTMwVDE0OjE2OjU2LjQ0NDA4MjgrMDA6MDAn\"",
            "createdBy": "2e13d467-4eba-4f70-bf29-ca572cd74a66",
            "assignedTo": "2e13d467-4eba-4f70-bf29-ca572cd74a66",
            "planId": "qRc6bL4UG0CTj__JR2t5w8gAHyD_",
            "bucketId": "IvW3aizvXkK51jcHz8PbAsgAGBw-",
            "title": "えいじの歯医者",
            "orderHint": "9223370570762222414 +",
            "assigneePriority": "0009005733162187763 D",
            "percentComplete": 100,
            "startDateTime": null,
            "assignedDateTime": "2016-06-16T15:55:53.455Z",
            "createdDateTime": "2016-06-16T15:55:53.3934688Z",
            "assignedBy": "2e13d467-4eba-4f70-bf29-ca572cd74a66",
            "dueDateTime": null,
            "hasDescription": false,
            "previewType": "automatic",
            "completedDateTime": "2016-09-04T23:21:31.5847515Z",
            "appliedCategories": {},
            "conversationThreadId": "AAQkADAzOWZlODFiLWI5NmEtNDZhNy1iN2JmLTA2Y2Y4OWZiMjY2YwMkABAAecTmDiV6OEemhUVsRL3L_RAAecTmDiV6OEemhUVsRL3L_Q==",
            "id": "5-_S8rdlbUyWYl5IiPmZocgAOGZL"
        },
        {

Planの詳細

https://graph.microsoft.com/beta/planner/plans/qRc6bL4UG0CTj__JR2t5w8gAHyD_

plan内タスクの一覧

https://graph.microsoft.com/beta/planner/plans/qRc6bL4UG0CTj__JR2t5w8gAHyD_/tasks

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#Collection(microsoft.graph.plannerTask)",
    "@odata.count": 15,
    "value": [
        {
            "@odata.etag": "W/\"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAYCc=\"",
            "createdBy": {
                "user": {
                    "displayName": null,
                    "id": "2e13d467-4eba-4f70-bf29-ca572cd74a66"
                }
            },
            "planId": "qRc6bL4UG0CTj__JR2t5w8gAHyD_",
            "bucketId": "IvW3aizvXkK51jcHz8PbAsgAGBw-",
            "title": "えいじの歯医者",
            "orderHint": "9223370570762222414\"+",
            "assigneePriority": "0009005733162187763\"D",
            "percentComplete": 100,
            "startDateTime": null,
            "createdDateTime": "2016-06-16T15:55:53.3934688Z",
            "dueDateTime": null,
            "hasDescription": false,
            "previewType": "automatic",
            "completedDateTime": "2016-09-04T23:21:31.5847515Z",
            "completedBy": {
                "user": {
                    "displayName": null,
                    "id": "2e13d467-4eba-4f70-bf29-ca572cd74a66"
                }
            },
            "referenceCount": 0,
            "checklistItemCount": 0,
            "activeChecklistItemCount": 0,
            "appliedCategories": {},
            "assignments": {
                "2e13d467-4eba-4f70-bf29-ca572cd74a66": {
                    "@odata.type": "#microsoft.graph.plannerAssignment",
                    "assignedBy": {
                        "user": {
                            "displayName": null,
                            "id": "2e13d467-4eba-4f70-bf29-ca572cd74a66"
                        }
                    },
                    "assignedDateTime": "2016-06-16T15:55:53.455Z",
                    "orderHint": ""
                }
            },
            "conversationThreadId": "AAQkADAzOWZlODFiLWI5NmEtNDZhNy1iN2JmLTA2Y2Y4OWZiMjY2YwMkABAAecTmDiV6OEemhUVsRL3L_RAAecTmDiV6OEemhUVsRL3L_Q==",
            "id": "5-_S8rdlbUyWYl5IiPmZocgAOGZL"
        },
        {

タスクの説明欄をとる

https://graph.microsoft.com/beta/planner/tasks/q4yR4RRyWEWF32JpgE5EEMgAH9tG/details

タスクのコメント欄?グループのカンバセーションスレッドを取る

https://graph.microsoft.com/beta/groups/7c7bca47-b20a-441e-91f9-24ef7572d6c2/threads

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment