---
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` string, required — The role(s) to assign to the user. It can be `admin`, `member`, owner. Eg: "member"
  - `organizationId` string, nullable — The organization ID to invite the user to
  - `resend` boolean, nullable — Resend the invitation email, if the user is already invited. Eg: true
  - `teamId` string, required

## 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

- `400` — Bad Request. Usually due to missing parameters, or invalid parameters.
- `401` — Unauthorized. Due to missing or invalid authentication.
- `403` — Forbidden. You do not have permission to access this resource or to perform this action.
- `404` — Not Found. The requested resource was not found.
- `429` — Too Many Requests. You have exceeded the rate limit. Try again later.
- `500` — Internal Server Error. This is a problem with the server that you cannot fix.

---

[API](https://skmtc.net/usekaneo/apis/kaneo-api.md) · [All operations](https://skmtc.net/usekaneo/apis/kaneo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/usekaneo/kaneo-api/versions/09053e1c8b21/schema)
