---
title: "Invite Member"
method: POST
path: "/me/organisations/{organisation_id}/invites"
tags: ["User API"]
---

# Invite Member

`POST /me/organisations/{organisation_id}/invites`

Invite someone to an organisation and email them.

If the invitee already has a Toolhouse account they join immediately, so
the "Go to organisation" link in the email lands somewhere that works.
Otherwise the invite stays pending until they sign up.

## Path parameters

- `organisation_id` string, required

## Request body

- InviteMemberRequest — Request body to invite someone to an organisation.
  - `email` string, email, required
  - `role` 'admin' | 'user'

## Response `201`

Successful Response

- OrganisationInvite — A pending invitation to join an organisation.
  - `id` string, uuid, required
  - `organisation_id` string, required
  - `email` string, required
  - `role` 'admin' | 'user', required
  - `invited_by` string, required
  - `status` 'pending' | 'accepted' | 'revoked'
  - `created_at` string, date-time, nullable
  - `resolved_at` string, date-time, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/toolhouse/apis/toolhouse-api.md) · [All operations](https://skmtc.net/toolhouse/apis/toolhouse-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/toolhouse/toolhouse-api/revisions/09d726cfeff3/schema)
