---
title: "Invite Organization Member"
method: POST
path: "/auth/organization/invite-member"
tags: ["Organization Management"]
---

# Invite Organization Member

`POST /auth/organization/invite-member`

Create an invitation to an organization

## Request body

- object
  - `email` string, required — The email address of the user to invite
  - `role` union, required — The role(s) to assign to the user. It can be `admin`, `member`, owner. Eg: "member"
    - string
    - string[]
  - `organizationId` string — The organization ID to invite the user to
  - `resend` boolean — Resend the invitation email, if the user is already invited. Eg: true
  - `teamId` union
    - string
    - string[]

## Response `200`

Success

- object
  - `id` string, required
  - `email` string, required
  - `role` string, required
  - `organizationId` string, required
  - `inviterId` string, required
  - `status` string, required
  - `expiresAt` string, required
  - `createdAt` string, required

## Other responses

- `401` — Missing or invalid credentials

## Changes

- **2026-08-24** `200744ae0bef` — 2 breaking, 3 info
  - the request property `organizationId` became not nullable
  - the request property `resend` became not nullable
  - the request property `teamId` became optional
  - request property `role` list-of-types was widened by adding types `array` to media type `application/json`
  - …1 more
- **2026-08-24** `08bbb5bedb5d` — 3 breaking, 6 info
  - the request property `organizationId` became not nullable
  - the request property `resend` became not nullable
  - removed the media type `application/json` for the response with the status `401`
  - the endpoint scheme security `bearerAuth` was removed from the API
  - …5 more
- **2026-03-05** `c45ef22a736c` — 2 info
  - the request property `organizationId` became nullable
  - the request property `resend` became nullable
- **2026-03-04** `21aca40b5846` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/usekaneo/apis/kaneo-api/changes/auth/organization/invite-member/post.md)

---

[API](https://skmtc.dev/usekaneo/apis/kaneo-api.md) · [All operations](https://skmtc.dev/usekaneo/apis/kaneo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/usekaneo/kaneo-api/revisions/9d1da42c10ce/schema)
