| title | List timeCard |
|---|---|
| description | Retrieve a list of timeCard entries in the schedule. |
| author | akumar39 |
| ms.localizationpriority | medium |
| ms.subservice | teams |
| doc_type | apiPageType |
| ms.date | 04/04/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Retrieve a list of timeCard entries in a schedule.
[!INCLUDE national-cloud-support]
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]
GET /teams/{teamId}/schedule/timeCardsThis method supports the $filter, $orderby, $top, $skipToken OData query parameters to help customize the response. For general information, see OData query parameters.
| Header | Value |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
| MS-APP-ACTS-AS (deprecated) | A user ID (GUID). Required only if the authorization token is an application token; otherwise, optional. The MS-APP-ACTS-AS header is deprecated and no longer required with application tokens. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a list of timeCard objects in the response body.
The following example shows a request.
GET https://graph.microsoft.com/beta/teams/fd15cad8-80f6-484f-9666-3caf695fbf32/schedule/timeCards?$top=2&$filter=state eq 'clockedOut'
[!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]
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": [
{
"@odata.etag": "\"3400c313-0000-0d00-0000-60afe1940000\"",
"id": "TCK_d1e0f245-9996-4125-b128-d3eb5c4b0164",
"createdDateTime": "2020-09-21T18:01:29.302Z",
"lastModifiedDateTime": "2021-05-27T18:14:44.503Z",
"userId": "66b4f2a4-425d-4dec-8172-7e889950885e",
"state": "clockedOut",
"confirmedBy": "none",
"notes": null,
"lastModifiedBy": {
"application": null,
"device": null,
"conversation": null,
"user": {
"id": "70e47528-2fae-42b5-9d8e-ee73ccd90603",
"displayName": "Jing Jing GuTwo"
}
},
"clockInEvent": {
"dateTime": "2020-09-21T18:01:29.302Z",
"atApprovedLocation": null,
"isAtApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "ClockIn-OBO Shorbani"
}
},
"clockOutEvent": {
"dateTime": "2021-05-27T18:14:44.503Z",
"atApprovedLocation": null,
"isAtApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "clock out notes"
}
},
"breaks": [],
"originalEntry": {
"clockInEvent": {
"dateTime": "2020-09-21T18:01:29.302Z",
"atApprovedLocation": null,
"isAtApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "ClockIn-OBO Shorbani"
}
},
"clockOutEvent": {
"dateTime": "2021-05-27T18:14:44.503Z",
"atApprovedLocation": null,
"isAtApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "clock out notes"
}
},
"breaks": []
},
"createdBy": {
"application": null,
"device": null,
"conversation": null,
"user": {
"id": "66b4f2a4-425d-4dec-8172-7e889950885e",
"displayName": "Janani Varadharajan"
}
}
},
{
"@odata.etag": "\"3400d914-0000-0d00-0000-60afe1ee0000\"",
"id": "TCK_aa73c610-dd75-4021-bb5c-6b071c7aa835",
"createdDateTime": "2020-09-21T18:02:48.688Z",
"lastModifiedDateTime": "2021-05-27T18:16:14.766Z",
"userId": "3041ccde-7544-4ae0-b44f-3618b08ba1ce",
"state": "clockedOut",
"confirmedBy": "none",
"notes": null,
"lastModifiedBy": {
"application": null,
"device": null,
"conversation": null,
"user": {
"id": "70e47528-2fae-42b5-9d8e-ee73ccd90603",
"displayName": "Jing Jing GuTwo"
}
},
"clockInEvent": {
"dateTime": "2020-09-21T18:02:48.688Z",
"atApprovedLocation": null,
"isAtApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "ClockIn-OBO Shorbani"
}
},
"clockOutEvent": {
"dateTime": "2021-05-27T18:16:14.766Z",
"atApprovedLocation": null,
"isAtApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "clock out notes"
}
},
"breaks": [],
"originalEntry": {
"clockInEvent": {
"dateTime": "2020-09-21T18:02:48.688Z",
"atApprovedLocation": null,
"isAtApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "ClockIn-OBO Shorbani"
}
},
"clockOutEvent": {
"dateTime": "2021-05-27T18:16:14.766Z",
"atApprovedLocation": null,
"isAtApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "clock out notes"
}
},
"breaks": []
},
"createdBy": {
"application": null,
"device": null,
"conversation": null,
"user": {
"id": "66b4f2a4-425d-4dec-8172-7e889950885e",
"displayName": "Janani Varadharajan"
}
}
}
]
}