---
title: "Invite Members To Organization"
method: POST
path: "/v2/orgs/{org_id}/invites"
tags: ["Invites"]
---

# Invite Members To Organization

`POST /v2/orgs/{org_id}/invites`

Invite new members into the organization.

## Path parameters

- `org_id` string, required — Either the unique id of the organization, or the URL-friendly key of the organization (i.e: the "slug").

## Query parameters

- `inviter_name` string
- `inviter_email` string

## Request body

- InviteCreate[]
  - `member_id` string, uuid — Unique id of the invite
  - `email` string, email, required — The invited member's email address
  - `role` 'admin' | 'write' | 'read' | 'no_access' — An enumeration.

## Response `200`

Successful Response

- MultiInviteResult
  - `success` InviteRead[], required
    - `member_id` string, uuid — Unique id of the invite
    - `email` string, email, required — The invited member's email address
    - `role` 'admin' | 'write' | 'read' | 'no_access' — An enumeration.
    - `id` string, uuid, required — Unique id of the invite
    - `organization_id` string, uuid, required — Unique id of the organization that the invite belongs to.
    - `invite_code` string, uuid, required — The invite code that is sent to the member's email
    - `created_at` string, date-time, required — Date and time when the invite was created (ISO_8601 format).
    - `status` 'pending' | 'accepted' | 'failed' | 'canceled', required — An enumeration.
    - `failed_reason` string — if failed, the reason the invitation failed
  - `failed` FailedInvite[] — invites that were not even attempted, and the reason why
    - `email` string, required
    - `reason` string, required

## Other responses

- `422` — Validation Error

---

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