---
title: "Invite a team member"
method: POST
path: "/team/invitations"
tags: ["Team"]
---

# Invite a team member

`POST /team/invitations`

Adds an existing Sequenzy user to the team directly, or emails an invitation to a new user. Requires owner or admin access.

## Request body

- object
  - `email` string, email, required — Email address to invite.
  - `role` 'admin' | 'viewer' | 'restricted', required — Role for the new member. Restricted members can open direct campaign links only.
  - `canManageBilling` boolean — Whether the member can manage billing. Only the company owner can grant this.

## Response `200`

Member added or invitation sent

- object
  - `success` boolean
  - `member` TeamMember
    - `id` string — Member or invitation ID. The owner entry uses the literal id "owner".
    - `kind` 'owner' | 'member' | 'invitation'
    - `userId` string, nullable
    - `role` 'owner' | 'admin' | 'viewer' | 'restricted'
    - `canManageBilling` boolean
    - `user` object
      - `id` string, nullable
      - `name` string, nullable
      - `email` string, email
      - `image` string, nullable
    - `status` 'joined' | 'pending' | 'expired'
    - `createdAt` string, date-time, nullable
    - `invitedAt` string, date-time, nullable
    - `expiresAt` string, date-time, nullable
    - `invitedBy` object, nullable
      - `id` string
      - `name` string, nullable
      - `email` string, email
  - `invitation` object
    - `id` string
    - `email` string
    - `role` 'admin' | 'viewer' | 'restricted'
    - `canManageBilling` boolean
    - `status` string
    - `invitedAt` string, date-time
    - `expiresAt` string, date-time

## Other responses

- `400` — Invalid email or owner email
- `401` — Unauthorized
- `403` — Admin access or owner billing grant required
- `404` — Company or inviter not found
- `409` — Already a member or invitation already pending
- `500` — Invitation email could not be sent

---

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