| title | Create checkInClaim |
|---|---|
| description | Create a new checkInClaim object to record the check-in status for a specific place, such as a desk or a room, associated with a specific calendar reservation. |
| author | shijieyao |
| ms.date | 11/11/2025 |
| ms.localizationpriority | medium |
| ms.subservice | outlook |
| doc_type | apiPageType |
Namespace: microsoft.graph
Create a new checkInClaim object to record the check-in status for a specific place, such as a desk or a room, associated with a specific calendar reservation. This check-in confirms that the reserved space is in use and prevents automatic release if auto-release policies are configured for that place.
[!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]
POST /places/{placesId}/checkIns| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
| Content-Type | application/json. Required. |
In the request body, supply a JSON representation of the checkInClaim object.
You can specify the following properties when creating a checkInClaim.
| Property | Type | Description |
|---|---|---|
| calendarEventId | String | The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. Read-only. Required. |
| checkInMethod | checkInMethod | Indicates the method of check-in. The possible values are: unspecified, manual, inferred, verified, unknownFutureValue. The default value is unspecified. Required. |
If successful, this method returns a 201 Created response code and a checkInClaim object in the response body.
The following example shows a request.
POST https://graph.microsoft.com/v1.0/places/c8aaf4d8-6c73-46c4-bf28-b2adadafb5be/checkIns
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.checkInClaim",
"calendarEventId": "040000008200E00074C5B7101A82E00800000000D02AC02D26EFDB010000000000000000100000005A18ADA04F0A24489AE13ED3CC367978",
"checkInMethod": "verified"
}[!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 201 Created
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.checkInClaim",
"calendarEventId": "040000008200E00074C5B7101A82E00800000000D02AC02D26EFDB010000000000000000100000005A18ADA04F0A24489AE13ED3CC367978",
"checkInMethod": "verified",
"createdDateTime": "2025-06-28T12:34:56.789Z"
}