---
title: "Sign in a user"
method: POST
path: "/api/v2/organizations/{orgSlug}/auth/signin"
tags: ["Auth"]
---

# Sign in a user

`POST /api/v2/organizations/{orgSlug}/auth/signin`

Authenticates a member with email and password. On success, returns the signed-in user profile (`_id`, `email`, `name`, `image`).  

 Required scopes: `flex.user.auth.signin`

## Path parameters

- `orgSlug` string, required

## Request body

- SigninRequestDto
  - `email` string, required — The email which was registered during signup as a login credential.
  - `password` string, required — The password which was registered during signup as a login credential.

## Response `200`

- UserResultDto
  - `_id` string — The _id of the user.
  - `email` string — The email of the user.
  - `name` string — The name of the user.
  - `image` string — The image of the user.

---

[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)
