> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inboxapp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Share your X inbox with a team member

> Invite a teammate to your Inboxapp team so they can access linked X inboxes.

export const Youtube = ({id, title = "YouTube video"}) => {
  const [playing, setPlaying] = useState(false);
  const poster = `https://i.ytimg.com/vi/${id}/hqdefault.jpg`;
  if (playing) {
    return <div className="relative my-6 aspect-video overflow-hidden rounded-xl border bg-gray-900">
        <iframe title={title} src={`https://www.youtube-nocookie.com/embed/${id}?autoplay=1&rel=0`} allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen className="absolute inset-0 h-full w-full" />
      </div>;
  }
  return <div className="relative my-6 aspect-video overflow-hidden rounded-xl border bg-gray-900">
      <button type="button" onClick={() => setPlaying(true)} className="group absolute inset-0 flex w-full items-center justify-center" aria-label={`Play ${title}`}>
        <img src={poster} alt="" className="absolute inset-0 h-full w-full object-cover" />
        <span className="relative z-10 flex h-14 w-14 items-center justify-center rounded-full bg-black/70 text-white shadow-lg transition group-hover:scale-105 group-hover:bg-black/85">
          <svg viewBox="0 0 24 24" className="ml-0.5 h-6 w-6 fill-current" aria-hidden>
            <path d="M8 5v14l11-7z" />
          </svg>
        </span>
      </button>
      <a href={`https://www.youtube.com/watch?v=${id}`} target="_blank" rel="noreferrer" className="sr-only">
        Watch on YouTube
      </a>
    </div>;
};

<Youtube id="YMnNnwrItF0" />

1. Log in at [inboxapp.com](https://inboxapp.com).
2. Switch to the correct **team** (team name at the top).

   <Frame>
     <img src="https://mintcdn.com/inboxtechinc/dgSDSEato981ZoWO/images/help/share-your-x-twitter-inbox-with-a-team-member/image-1498152378.png?fit=max&auto=format&n=dgSDSEato981ZoWO&q=85&s=c59046157964e69c57582ee0987ce3eb" alt="Team switcher showing the active team name" width="350" height="170" data-path="images/help/share-your-x-twitter-inbox-with-a-team-member/image-1498152378.png" />
   </Frame>
3. Open **Settings → General**.
4. Click **Invite**, enter their email, and click **Send Invites**.

   <Frame>
     <img src="https://mintcdn.com/inboxtechinc/dgSDSEato981ZoWO/images/help/share-your-x-twitter-inbox-with-a-team-member/image-1498155974.png?fit=max&auto=format&n=dgSDSEato981ZoWO&q=85&s=88c6df33d07335771c30d729b0b1cc2f" alt="Team members section with Invite button" width="1414" height="558" data-path="images/help/share-your-x-twitter-inbox-with-a-team-member/image-1498155974.png" />
   </Frame>
5. They accept the email invite and join the team.

**Note:** Invited members currently get access to all linked accounts on the team. Finer-grained permissions are not available yet.

## Related

* [Create a new team](/help/account/how-to-create-a-new-team)
* [How pricing works for multiple accounts](/help/billing/how-does-the-pricing-work-for-multiple-accounts)

Still stuck? Contact support from the app.
