GET /v2/users/:id/invites List invites issued for a user (any state). Path params: id (required) — User identifier (UUID). Response (200 OK): { "data": [ { "id": "string (UUID)", "type": "invite", "attributes": { "state": "string — valid | used | expired | cancelled", "link": "string — invite URL", "restrictedToIdentityProvider": "string — apple | google | microsoft | \"\"", "restrictedToEmail": "string", "expiration": "ISO 8601 timestamp" }, "relationships": { "user": { "data": { "type": "user", "id": "string" } } } } ] }