Is it possible to invoke multiple remote endpoints within a single module?

Hi all,

I am developing a CustomUI Forge App and want to connect to a dedicated remote. This is how my manifest.yml currently looks like:

permissions:

  scopes:
    - read:app-user-token
    - read:app-system-token

modules:

  jira:projectSettingsPage:

    - key: settings-ladning-page
      resource: main
      resolver:
        endpoint: remote-settings
      title: Landing Page

  endpoint:
    - key: remote-settings
      remote: backend
      route:
        path: /backend/endpoint/foo
      auth:
        appUserToken:
          enabled: true
        appSystemToken:
          enabled: true

resources:
  - key: main
    path: static/frontend/build

remotes:
  - key: backend
    baseUrl: https://my.backend.com

app:
  id: <my-forge-app>

Now I am wondering, if

  1. I can register a second endpoint such as /backend/endpoint/bar to this settings page?
  2. I can use multiple methods on a single endpoint such as GET, POST, PATCH, etc.?

Thanks
Valentin