changeTrackedEntity: stageForDeletion

Namespace: microsoft.graph

Stage the deletion of an openShift, shift, or timeOff instance in a schedule in draft mode.

Draft changes are only visible to managers. Team members aren't sent notification for draft changes. The deletion is finalized when the schedule is shared.

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

Permission type Least privileged permissions Higher privileged permissions
Delegated (work or school account) Schedule.ReadWrite.All Group.ReadWrite.All
Delegated (personal Microsoft account) Not supported. Not supported.
Application Schedule.ReadWrite.All Not available.

HTTP request

For an openShift:

POST /teams/{teamsId}/schedule/openShifts/{openShiftId}/stageForDeletion

For a shift:

POST /teams/{teamsId}/schedule/shifts/{shiftId}/stageForDeletion

For a timeOff:

POST /teams/{teamsId}/schedule/timesOff/{timeOffId}/stageForDeletion

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
MS-APP-ACTS-AS A user ID (GUID). Required only if the authorization token is an application token; otherwise, optional.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 204 No Content response code.

Examples

Example 1: Stage the deletion of an openShift

The following example shows how to stage the deletion of an openShift in a schedule in draft mode.

Request

The following example shows a request.

POST https://graph.microsoft.com/v1.0/teams/3d88b7a2-f988-4f4b-bb34-d66df66af126/schedule/openShifts/OPNSHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8/stageForDeletion

Response

The following example shows the response.

HTTP/1.1 204 No Content

Example 2: Stage the deletion of a shift

The following example shows how to stage the deletion of a shift in a schedule in draft mode.

Request

The following example shows a request.

POST https://graph.microsoft.com/v1.0/teams/3d88b7a2-f988-4f4b-bb34-d66df66af126/schedule/shifts/SHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8/stageForDeletion

Response

The following example shows the response.

HTTP/1.1 204 No Content

Example 3: Stage the deletion of a timeOff

The following example shows how to stage the deletion of a timeOff in a schedule in draft mode.

Request

The following example shows a request.

POST https://graph.microsoft.com/v1.0/teams/3d88b7a2-f988-4f4b-bb34-d66df66af126/schedule/timesOff/SHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8/stageForDeletion

Response

The following example shows the response.

HTTP/1.1 204 No Content