---
title: "Add applicants from event pool to session"
method: POST
path: "/events/{eventId}/sessions/{sessionId}/applicants"
tags: ["events"]
---

# Add applicants from event pool to session

`POST /events/{eventId}/sessions/{sessionId}/applicants`

Use this endpoint to add applicants to session.

## Path parameters

- `eventId` string, uuid, required
- `sessionId` string, uuid, required

## Request body

- AddApplicantsToSessionPublicDTO
  - `applicantIds` string[], required
  - `allowOverbooking` boolean

## Response `200`

When applicants was added successfully

- SessionApplicants[]
  - `applicants` SessionApplicant[]
    - `id` string, uuid
    - `eventId` string, uuid
    - `sessionId` string, uuid
    - `applicantId` string, uuid
    - `status` 'PENDING' | 'TENTATIVE' | 'ACCEPTED' | 'DECLINED' | 'ORGANIZER'

## Other responses

- `400` — Returned when a request is not valid.
- `401` — Returned when a request was not authenticated.
- `403` — Returned when a caller is not authorized to perform the request.
- `404` — Returned when event not found or session not found in event
- `409` — Returned when session is full and overbooking is not allowed

---

[API](https://skmtc.net/smartrecruiters/apis/apply-api.md) · [All operations](https://skmtc.net/smartrecruiters/apis/apply-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/smartrecruiters/apply-api/versions/449bdc2516c9/schema)
