Retrieve a List of Products and Events {#wh-fg-product-list-intro}
==================================================================

This section describes how to retrieve a list of the products and event types that are enabled for your organization. Use this list to know which products and events that you can subscribe to. A successful response lists the enabled products and events in the productId and eventTypes.eventName fields. You can use these same field values when you send a *create a webhook subscription* request.  
If the list you retrieve does not contain an expected product or event type, the product might not be enabled for your organization. Contact your account manager for more information.  
For a list of all the products and event types that are supported by the Webhooks `REST API`, see the [Supported Products and Event Types](/docs/cybs/en-us/webhooks/implementation/all/rest/webhooks/wh-fg-intro/wh-fg-product-event-types.md "").

Endpoints
---------

Send a GET request to one of these endpoints. The *{organizationId}* is your organization ID.

* **Test:** `GET ``https://apitest.cybersource.com``/notification-subscriptions/v2/products/`*{organizationId}*
* **Production:** `GET ``https://api.cybersource.com``/webhooks/notification-subscriptions/v2/products/`*{organizationId}*
* **India Production:** `GET https://api.in.cybersource.com/notification-subscriptions/v2/products/`*{organizationId}*

Example: Retrieving a List Products and Event {#wh-fg-product-list-ex}
======================================================================

```keyword
GET https://api.cybersource.com/notification-subscriptions/v2/products/{organizationId}
```

```
[
  {
    "productId": "terminalManagement",
    "eventTypes": [
      {
        "eventName": "terminalManagement.status.update",
        "payloadEncryption": false
      },
      {
        "eventName": "terminalManagement.assignment.update",
        "payloadEncryption": false
      },
      {
        "eventName": "terminalManagement.reAssignment.update",
        "payloadEncryption": false
      }
    ]
  }
]
```

REST Interactive Example: Retrieving Product and Event Types {#wh-fg-product-events-dev-ex}
===========================================================================================

Click this image to access the interactive code example for retrieving the product and event types enabled for your organization.

#### Figure:

Retrieve Product and Event Types [![Image and link to the interactive code example for retrieving the
product and event types enabled for your organization.](/content/dam/documentation/cybs/en-us/topics/payments-processing/payment-services/webhooks/images/retrieve-product-list-dev.png/jcr:content/renditions/original)](https://developer.cybersource.com/api-reference-assets/index.md?stage=pilot#webhooks_create-new-webhooks_find-products-you-can-subscribe-to "")
