API Stability Long-Term

The eventForwarders() GraphQL query will list all of the event forwarders associated with an organization.

For more information on event forwarding rules, see the Event Forwarding Rules documentation page. You may also want to look at the Event Forwarding and the Events page for related information.

Syntax

Below is the syntax for the eventForwarders() query field:

graphql
eventForwarders: [EventForwarder!]!

Using this query field is fairly simple. For EventForwarder, you would enter the parameters you want returned within curly-brackets The parameters are listed in the Given Datatypes section — after the example below:

Show:
graphql
query {
  eventForwarders {
    id, name, enabled, description
  }  
}
Example Responses
Show:
json
{
  "data": {
    "eventForwarders": [
      {
        "id": "RhLcbl3OJcjfIOmfPyLxVUpR9I2Fma6K",
        "name": "Majordomo",
        "enabled": true,
        "description": "Major event forwarder.\n"
      }
    ]
  }
}

Given Datatypes

For the given datatype, EventForwarder, there are a few parameters. Below is a list of them along with a description of each:

Table: EventForwarder

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 17, 2024
descriptionstringyes Long-TermA description of the event forwarder.
enabledstringyes Long-TermWhether the event forwarder is enabled.
idstringyes Long-TermThe unique identifier of the event forwarder.
namestringyes Long-TermThe name of the event forwarder.