シフトを置き換える
名前空間: microsoft.graph
重要
Microsoft Graph の /beta
バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。
既存の シフトを置き換えます。
指定した シフト が存在しない場合、このメソッドは を返します 404 Not found
。
シフトの期間を 1 分未満にすることも、24 時間を超えることはできません。
アクセス許可
この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。 アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「 アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、 アクセス許可のリファレンスを参照してください。
アクセス許可の種類 | 最小特権アクセス許可 | 特権の高いアクセス許可 |
---|---|---|
委任 (職場または学校のアカウント) | Schedule.ReadWrite.All | Group.ReadWrite.All |
委任 (個人用 Microsoft アカウント) | サポートされていません。 | サポートされていません。 |
アプリケーション | Schedule.ReadWrite.All | 注意事項なし。 |
HTTP 要求
PUT /teams/{teamId}/schedule/shifts/{shiftId}
要求ヘッダー
ヘッダー | 値 |
---|---|
Authorization | ベアラー {token}。 必須です。 認証と承認の詳細については、こちらをご覧ください。 |
Content-Type | application/json. Required. |
MS-APP-ACTS-AS | ユーザー ID (GUID)。 承認トークンがアプリケーション トークンの場合にのみ必要です。それ以外の場合は省略可能です。 |
要求本文
要求本文で、 シフト オブジェクトの JSON 表現を指定します。
応答
成功した場合、このメソッドは応答コードと空のコンテンツを 204 No Content
返します。 要求でヘッダーreturn=representation
がPrefer
優先で指定されている場合、このメソッドは応答コードと応答本文のシフト オブジェクトを返200 OK
します。
例
要求
次の例は要求を示しています。
PUT https://graph.microsoft.com/beta/teams/{teamId}/schedule/shifts/{shiftId}
Content-type: application/json
Prefer: return=representation
{
"id": "SHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8",
"createdDateTime": "2019-03-14T04:32:51.451Z",
"lastModifiedDateTime": "2019-03-14T05:32:51.451Z",
"userId": "c5d0c76b-80c4-481c-be50-923cd8d680a1",
"schedulingGroupId": "TAG_228940ed-ff84-4e25-b129-1b395cf78be0",
"lastModifiedBy": {
"application": null,
"device": null,
"conversation": null,
"user": {
"id": "366c0b19-49b1-41b5-a03f-9f3887bd0ed8",
"displayName": "John Doe"
}
},
"sharedShift": {
"displayName": "Day shift",
"notes": "Please do inventory as part of your shift.",
"startDateTime": "2019-03-11T15:00:00Z",
"endDateTime": "2019-03-12T00:00:00Z",
"theme": "blue",
"activities": [
{
"isPaid": true,
"startDateTime": "2019-03-11T15:00:00Z",
"endDateTime": "2019-03-11T15:15:00Z",
"code": "",
"displayName": "Lunch"
}
]
},
"draftShift": {
"displayName": "Day shift",
"notes": "Please do inventory as part of your shift.",
"startDateTime": "2019-03-11T15:00:00Z",
"endDateTime": "2019-03-12T00:00:00Z",
"theme": "blue",
"activities": [
{
"isPaid": true,
"startDateTime": "2019-03-11T15:00:00Z",
"endDateTime": "2019-03-11T15:30:00Z",
"code": "",
"displayName": "Lunch"
}
]
}
}
応答
次の例は応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 200 OK
Content-type: application/json
{
"id": "string",
"userId": "string",
"schedulingGroupId": "string",
"sharedShift": {
"notes": "string",
"displayName": "string",
"startDateTime": "2018-10-04T00:58:45.340Z",
"endDateTime": "2018-10-04T00:58:45.340Z",
"theme": "white",
"activities": [
{
"isPaid": true,
"startDateTime": "2018-10-04T00:58:45.340Z",
"endDateTime": "2018-10-04T00:58:45.340Z",
"code": "string",
"displayName": "string"
}
]
},
"draftShift": {
"notes": "string",
"displayName": "string",
"startDateTime": "2018-10-04T00:58:45.340Z",
"endDateTime": "2018-10-04T00:58:45.340Z",
"theme": "white",
"activities": [
{
"isPaid": true,
"startDateTime": "2018-10-04T00:58:45.340Z",
"endDateTime": "2018-10-04T00:58:45.340Z",
"code": "string",
"displayName": "string"
}
]
},
"createdDateTime": "2018-10-04T00:58:45.340Z",
"lastModifiedDateTime": "2018-10-04T00:58:45.340Z",
"lastModifiedBy": {
"user": {
"id": "string",
"displayName": "string"
},
"application": {
"id": "string",
"displayName": "string"
},
"device": {
"id": "string",
"displayName": "string"
}
}
}