# ExternalFeeds Get all external feeds Retrieves all external feeds from your Brevo account with filtering and pagination. **Use this to:** - Get an overview of all external data feeds - Find feeds by name using search functionality - Filter feeds by creation date range - Browse feeds by authentication type - Monitor feed library organization and usage **Key information returned:** - Feed details (UUID, name, URL, authentication type) - Feed configuration and settings - Creation and modification timestamps - Feed status and error information - Authentication and header configurations **Important considerations:** - External feeds enable dynamic content in email campaigns - Feeds must be accessible from Brevo servers - Authentication credentials are securely stored - Feed performance affects campaign delivery - Use pagination for accounts with many feeds - Date range filtering limited to 30 days maximum - Search functionality works on feed name matching - Internal feeds are system-managed and cannot be modified - Catalog: `Brevo` - Schema: `ExternalFeeds` - Primary Keys: `id` Can retrieve data and change data using insert, update and delete. ## Parameters of Table Function The following parameters can be used to control the behaviour of the table function `ExternalFeeds`. A value must be provided at all times for required parameters, but optional parameters in general do not need to have a value and the execution will default to a pre-defined behaviour. Values can be specified by position and by name. In both cases, all parameters not specified will be evaluated using their default values. Value specification by position is done by listing all values from the first to the last needed value. For example: a `select * from table(value1, value2, value3)` on a table with four parameters will use the default value for the fourth parameter and the specified values for the first three. Value specification by name is done by listing all values that require a value. For example with `select * from table(name1 => value1, name3 => value3)` on the same table will use the default values for the second and fourth parameters and the specified values for the first and third. | Name | Data Type | Required | Default Value | Documentation | |---|:---:|:---:|:---:|---| | `authType` | `` | ☐ | | Filter the records by `authType` of the feed. (Values: basic, token, noAuth) | | `endDate` | `` | ☐ | | Mandatory if `startDate` is used. Ending date (YYYY-MM-DD) till which you want to fetch the list. Maximum time period that can be selected is one month. | | `search` | `` | ☐ | | Can be used to filter records by search keyword on feed name | | `startDate` | `` | ☐ | | Mandatory if `endDate` is used. Starting date (YYYY-MM-DD) from which you want to fetch the list. Can be maximum 30 days older than current date. | ## Columns of Table Function The columns of the table function `ExternalFeeds` are shown below. Each column has an SQL data type. A new non-null value must be provided for every required column at all times during insert and update. | Name | Data Type | Label | Required | Documentation | |---|:---:|---|:---:|---| | `authType` | `varchar2` | | ☐ | Authentication type for accessing the feed | | `cache` | `char` | | ☐ | Whether to cache the feed response | | `createdAt` | `datetime` | Creation Date | ☐ | Feed creation timestamp | | `id` | `varchar2` | ID | ☐ | Unique identifier of the feed | | `maxRetries` | `int64` | | ☐ | Maximum number of retry attempts for failed requests | | `modifiedAt` | `datetime` | Modified Date | ☐ | Feed last modification timestamp | | `name` | `varchar2` | Name | ☐ | Name of the feed | | `password` | `varchar2` | Password | ☐ | Password for basic authentication. Only returned when authType is 'basic'. Excluded when authType is 'token'. | | `token` | `varchar2` | Token | ☐ | Token for token-based authentication. Only returned when authType is 'token'. Excluded when authType is 'basic' or 'noAuth'. | | `url` | `varchar2` | URL | ☐ | URL of the external data source | | `username` | `varchar2` | | ☐ | Username for basic authentication. Only returned when authType is 'basic'. Excluded when authType is 'token'. |