Validate invite token
Endpoint
Section titled “Endpoint”GET /v1/auth/invites/validate
Authentication
Section titled “Authentication”No authentication required.
Query Parameters
Section titled “Query Parameters”| Parameter | Type | Default | Description |
|---|---|---|---|
token | string | - | Invite token from signup URL |
cURL Example
Section titled “cURL Example”curl -X GET "https://api.sapiom.ai/v1/auth/invites/validate" \ -H "Authorization: Bearer YOUR_API_KEY"Response
Section titled “Response”{ "expiresAt": "2025-11-12T23:59:59.000Z"}Error Responses
Section titled “Error Responses”| Status | Code | Description |
|---|---|---|
| 400 | - | Bad request - token missing, expired, revoked, or already accepted |
| 404 | - | Invite not found with provided token |
See Error Codes for full reference.