---
title: "Check in a Member"
method: POST
path: "/api/v2/organizations/{orgSlug}/checkins/{memberId}"
tags: ["Checkins"]
---

# Check in a Member

`POST /api/v2/organizations/{orgSlug}/checkins/{memberId}`

Check in member with id = {memberId}. Member checkins with start date before the current date and no end date are not allowed. 

 Required scopes: `flex.community.checkins.create`

## Path parameters

- `memberId` string, required
- `orgSlug` string, required

## Request body

- AddCheckinDto
  - `location` string, required — The _id of the location associated with the check-in.
  - `start` string, date-time, required — Contains the start date of the check-in.
  - `end` string, date-time — Contains the end date of the check-in.

## Response `201`

- CheckinResultDto
  - `_id` string — The _id of the check-in.
  - `start` string, date-time — Contains the start date of the check-in.
  - `end` string, date-time — Contains the end date of the check-in.
  - `location` string — The _id of the location associated with the check-in.
  - `company` string — The _id of the company associated with the check-in.
  - `member` string — The _id of the member associated with the check-in.
  - `booking` string — The _id of the booking associated with the check-in.
  - `pass` string — The _id of the pass associated with the check-in.
  - `resourceType` string — The resourceType of the booking associated with the check-in.
  - `source` string — The source associated with the check-in.
  - `createdBy` string — The user that created the check-in.
  - `modifiedBy` string — The user that did the last modification to the check-in. If no update is made this field will match the "createdBy" field.

---

[API](https://skmtc.dev/officernd/apis/authentication-api.md) · [All operations](https://skmtc.dev/officernd/apis/authentication-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/officernd/authentication-api/revisions/6bcd33dc648e/schema)
