# POST /our-company/users/:user_id/resend-invite

**Resource:** [Company](./company.md)  
**MCP tool:** `resend_user_invite`  
**Scopes:** `users:write`  
**Write operation:** yes

Resend the workspace invitation to a user who was invited but has not accepted yet (status "pending"), shown at https://app.trustpager.com/settings/team. Keeps the SAME user id, so existing report recipients, task and work-order assignments stay intact. Never use remove_user plus invite_user to re-invite someone: that mints a new id and silently breaks those references. Get user_id from list_company_users. Fails if the user has already accepted and is active.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `user_id` | path | string | yes | UUID of the pending workspace user to re-invite. Get it from list_company_users (their status will be "pending"). |
| `require_approval` | body | boolean | no | Optional. Set true to route this write into the approval queue for human review instead of executing it immediately (returns 202 + an approval_id). Works even when your key/token has permission to execute directly. |

## Request example

```bash
curl -X POST   "https://api.trustpager.com/functions/v1/api/v1/our-company/users/:user_id/resend-invite"   -H "Authorization: Bearer YOUR_API_KEY"   -H "Content-Type: application/json"   -d '{"require_approval":"..."}'
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`