---
title: "Validate Invitation"
method: GET
path: "/api/v1/companies/invitations/validate"
tags: ["companies"]
---

# Validate Invitation

`GET /api/v1/companies/invitations/validate`

Resolve a pending invitation token for the accept page.

Unauthenticated by design — the invitee has no account yet, so the
opaque token is the credential (same posture as password-reset
validation). Returns the invitee email + company name, or a domain
error (404 / 410) if the token is unknown, consumed, or expired.

## Query parameters

- `token` string, required

## Response `200`

Successful Response

- CompanyInvitationValidateRead — Public view of a pending invitation, resolved by token. Returned by the unauthenticated ``/invitations/validate`` endpoint so the accept page can show who the invite is for before the invitee creates their account. Deliberately minimal — no ids, no inviter.
  - `email` string, required
  - `company_name` string, required
  - `role` string, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/netter/apis/dmi-backend.md) · [All operations](https://skmtc.net/netter/apis/dmi-backend/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/netter/dmi-backend/versions/a59877bf911b/schema)
