# Is het mogelijk om parameters door te geven aan de API die Community Links aanmaakt?

**URL:** https://meta.discourse.org/t/is-it-possible-to-pass-params-to-the-api-that-creates-community-links/368857
**Category:** Development
**Created:** [4 juni 2025 om 13:59 UTC](https://meta.discourse.org/t/is-it-possible-to-pass-params-to-the-api-that-creates-community-links/368857 "2025-06-04T13:59:01Z")
**Posts on this page:** 1
**Showing post:** 5

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [4 juni 2025 om 15:23 UTC](https://meta.discourse.org/t/is-it-possible-to-pass-params-to-the-api-that-creates-community-links/368857/5 "2025-06-04T15:23:47Z")

</div>

Oh and since there’s a `typeof args === "function"` condition, you could do something like this immediately:

```js
api.addCommunitySectionLink((Base) =>
  class CustomLink extends Base {
    get name() {
      return "intersection-navigator";
    }

    get route() {
      return "tag.show";
    }

    get models() {
      return ["tagid"];
    }

    get title() {
      return I18n.t("tag_intersection_navigator.link.title");
    }

    get text() {
      return I18n.t("tag_intersection_navigator.link.text");
    }

  }
);

```

---

_[View the full topic](https://meta.discourse.org/t/is-it-possible-to-pass-params-to-the-api-that-creates-community-links/368857)._
