Skip to content

Latest commit

 

History

History
157 lines (115 loc) · 5.19 KB

openshiftchangerequest-list.md

File metadata and controls

157 lines (115 loc) · 5.19 KB
title description ms.localizationpriority author ms.subservice doc_type
List openShiftChangeRequests
Retrieve a list of openShiftChangeRequest objects in a team.
medium
akumar39
teams
apiPageType

List openShiftChangeRequests

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Retrieve a list of openShiftChangeRequest objects in a team.

[!INCLUDE national-cloud-support]

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.

[!INCLUDE permissions-table]

HTTP request

GET /teams/{id}/schedule/openShiftChangeRequests

Optional query parameters

This method supports some of the OData query parameters to help customize the response. For general information, see OData query parameters.

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 200 OK response code and the list of openShiftChangeRequest objects in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/teams/{id}/schedule/openShiftChangeRequests

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-type: application/json

{
	"value": [{
		"id": "SREQ_0b87dd20-d5ed-4764-9c3e-cfc8516def09",
		"openShiftId": "577b75d2-a927-48c0-a5d1-dc984894e7b8",
		"assignedTo": "manager",
		"state": "pending",
		"senderUserId": "3fe0bc21-1398-4fd9-9713-52511b434c1e",
		"senderDateTime": "2019-05-01T10:00:00Z",
		"senderMessage": "Can I take this shift?",
		"managerUserId": null,
		"managerActionDateTime": null,
		"managerActionMessage": null,
		"createdDateTime": "2019-03-14T04:32:51.451Z",
		"lastModifiedDateTime": "2019-03-14T05:32:51.451Z",
		"lastModifiedBy": {
			"application": null,
			"device": null,
			"conversation": null,
			"user": {
				"id": "366c0b19-49b1-41b5-a03f-9f3887bd0ed8",
				"displayName": "John Doe"
			}
		}
	}]
}