See the content blocking my Connect Boards visibility

A user has a Connect Board column with 40+ connected boards. We found that some users, including Admins, could not see the column values because they could not access 1 of the connected boards. It took a long time to track down the offending board. Requests for access went “into the void” with no response from the owner (who could have left the company, for all we knew).

Is there a way to see the names of the boards behind a Connect Boards or Mirror column for Admins, even if they are not invited to the underlying boards? This would help guide an investigation when troubleshooting.

Hello @nateworks

Right now, this is expected behavior: Connect Boards and Mirror columns only show values from boards the viewer can access. So if someone (even an Admin) is missing access to just one connected board, the connected/mirrored values can appear blank or incomplete.

Unfortunately, there’s no built in way for Admins to see a list of the connected board names behind a Connect Boards or Mirror column unless they’re invited to those boards.

If you’d like hands-on help or want us to walk through this live, you can book a 1:1 paid 60-minute strategy session with our team here:
:backhand_index_pointing_right: Calendly

Hi @nateworks, Welcome to the Community!!

This is a tricky scenario and, unfortunately, there isn’t a guaranteed admin-level override for this today.

That said, one thing that may be worth trying (and has helped in some cases) is inspecting the Connect Boards column settings via the API. Even if an Admin can’t see the linked items or mirror values, the column’s settings_str may still list the IDs of the boards it’s connected to. From there, you can attempt to query each board ID individually to identify which one you don’t have access to — that often points to the “offending” board.

To do this, you could try running a query like the following in the monday.com API Playground:

query {
  boards(ids: SOURCE_BOARD_ID) {
    columns {
      id
      title
      type
      settings_str
    }
  }
}

It’s not a perfect solution and won’t bypass permissions, but it can sometimes provide enough visibility to narrow down where the issue is coming from and help guide the investigation.

Wild that even admins can’t see which boards are connected if they don’t have access. Seems like a basic oversight in permission design.

I think I have the answer! (This is for admins.)

  1. On the board in question, open developer tools (right-click > inspect).

  2. Go to the Network tab.

  3. If you don’t see anything listed, you may need to refresh the page.

  4. In the search field, search “metadata”.

  5. In the Name column, click the “metadata” event.

  6. Go to the Response tab.

  7. Look for “missing_linked_boards_permissions”.
    That will show all the boards you are missing permissions for.

  8. Copy one of the board IDs listed.

  9. Click your name icon in the top-right corner of the screen. Select “Administration.”

  10. Select Content Directory in the left side panel.

  11. Paste the board ID in the search field.

  12. In the list, you’ll be able to see the board owner and members.

  13. You can click the kebab menu and add yourself as an owner, or you can ask the owner to add you to the board.

This is a common pain point with Connect Boards. Unfortunately, Admins can’t see the names of connected boards if they don’t have access — that’s why one “missing” board can block visibility.

A workaround is to temporarily give yourself access via a co-owner or request the owner to add you, or keep a separate list of connected boards for troubleshooting. It’s not perfect, but it can save a lot of time when tracking issues like this.

@YOGESHP , this is helpful. I’ll keep it in the toolbox. Thank you!

1 Like