TimeCard auflisten
Namespace: microsoft.graph
Wichtig
APIs unter der /beta Version in Microsoft Graph können geändert werden. Die Verwendung dieser APIs in Produktionsanwendungen wird nicht unterstützt. Um festzustellen, ob eine API in Version 1.0 verfügbar ist, verwenden Sie die Versionsauswahl .
Dient zum Abrufen einer Liste von timeCard-Einträgen in einem Zeitplan.
Berechtigungen
Eine der nachfolgenden Berechtigungen ist erforderlich, um diese API aufrufen zu können. Weitere Informationen, unter anderem zur Auswahl von Berechtigungen, finden Sie im Artikel zum Thema Berechtigungen.
| Berechtigungstyp | Berechtigungen (von der Berechtigung mit den wenigsten Rechten zu der mit den meisten Rechten) |
|---|---|
| Delegiert (Geschäfts-, Schul- oder Unikonto) | Schedule.Read.All, Schedule.ReadWrite.All |
| Delegiert (persönliches Microsoft-Konto) | Nicht unterstützt |
| Anwendung | Schedule.Read.All , Schedule.ReadWrite.All |
*Wichtig: Wenn Sie Anwendungsberechtigungen verwenden, müssen Sie den
MS-APP-ACTS-ASHeader in die Anforderung einschließen.
HTTP-Anforderung
GET /teams/{teamId}/schedule/timecards
Optionale Abfrageparameter
Diese Methode unterstützt die $filter $orderBy $top $skipToken OData-Abfrageparameter , , um die Antwort anzupassen. Allgemeine Informationen finden Sie unter OData-Abfrageparameter.
Anforderungsheader
| Kopfzeile | Wert |
|---|---|
| Authorization | Bearer {token}. Erforderlich. |
| MS-APP-ACTS-AS | Die ID des Benutzers, für den die App fungiert. Erforderlich, wenn Sie den Anwendungsberechtigungsbereich verwenden. |
Anforderungstext
Geben Sie für diese Methode keinen Anforderungstext an.
Antwort
Bei erfolgreicher Ausführung gibt die Methode den 200 OK Antwortcode und eine Liste der timeCard-Objekte im Antworttext zurück.
Beispiel
Anforderung
Nachfolgend sehen Sie ein Beispiel der Anforderung.
GET https://graph.microsoft.com/beta/teams/fd15cad8-80f6-484f-9666-3caf695fbf32/schedule/timeCards?$top=2&$filter=state eq 'clockedOut'
Antwort
Nachfolgend sehen Sie ein Beispiel der Antwort.
Hinweis: Das hier gezeigte Antwortobjekt kann zur besseren Lesbarkeit gekürzt werden.
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,
"notes": {
"contentType": "text",
"content": "ClockIn-OBO Shorbani"
}
},
"clockOutEvent": {
"dateTime": "2021-05-27T18:14:44.503Z",
"atApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "clock out notes"
}
},
"breaks": [],
"originalEntry": {
"clockInEvent": {
"dateTime": "2020-09-21T18:01:29.302Z",
"atApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "ClockIn-OBO Shorbani"
}
},
"clockOutEvent": {
"dateTime": "2021-05-27T18:14:44.503Z",
"atApprovedLocation": 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,
"notes": {
"contentType": "text",
"content": "ClockIn-OBO Shorbani"
}
},
"clockOutEvent": {
"dateTime": "2021-05-27T18:16:14.766Z",
"atApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "clock out notes"
}
},
"breaks": [],
"originalEntry": {
"clockInEvent": {
"dateTime": "2020-09-21T18:02:48.688Z",
"atApprovedLocation": null,
"notes": {
"contentType": "text",
"content": "ClockIn-OBO Shorbani"
}
},
"clockOutEvent": {
"dateTime": "2021-05-27T18:16:14.766Z",
"atApprovedLocation": 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"
}
}
}
]
}
Feedback
Feedback senden und anzeigen für