---
title: "Create Organization Member"
method: POST
path: "/api/organization/{organization_id}/member"
tags: ["Organization"]
---

# Create Organization Member

`POST /api/organization/{organization_id}/member`

Create an organization member.

## Path parameters

- `organization_id` string, uuid, required

## Request body

- OrganizationMemberCreateSchema — Schema for creating a member in an organization.
  - `email` string, required — Email address of the member.
  - `role` string, required — Role of the member in the organization.

## Response `200`

Successful Response

- OrganizationMemberSchema — Schema for representing a member of an organization.
  - `organization_id` string, uuid, required
  - `email` string, required — Email address of the member.
  - `name` string, required — Name of the member.
  - `role` string, nullable — Optional role of the member in the organization.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/chat-fly/apis/chatfly-backend-application.md) · [All operations](https://skmtc.net/chat-fly/apis/chatfly-backend-application/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/chat-fly/chatfly-backend-application/revisions/cbb37496f138/schema)
