Managing Subscriptions
Once you have created a subscription, you can view and manage your subscriptions in the Customer Portal and Equinix API.
-
To create and manage subscriptions, you must have the
Fabric Stream Subscription Manager(STREAM_SUBSCRIPTION PERMISSION CREATE AND READ) role. Contact your Company Administrator or IAM Administrator to manage access and roles. -
If you are using the API, be sure to submit your user credentials, Client ID, and Client Secret for OAuth2 authentication. Refer to API Authentication for more information on how to authenticate your requests to the Equinix API.
Viewing Your Subscriptions
- Portal
- API
To view your subscriptions to a particular Stream:
-
Sign in to the Customer Portal and navigate to Observability.
-
From the Observability menu, click Data Streams.
-
Select a Stream from the Stream Inventory.

-
On a stream's page, click Subscriptions.
To retrieve a list of a stream's subscriptions, send a GET request to the /fabric/v4/streams/{streamId}/subscriptions endpoint.
Sample cURL Request:
curl -X 'GET' 'https://api.equinix.com/fabric/v4/streams/{streamId}/subscriptions' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <Bearer Token>'
Subscription Details
- Portal
- API
-
From the Observability menu, click Data Streams.
-
Select a Stream from the Stream Inventory.
-
On a stream's page, click Subscriptions.
-
Select a Subscription from the list to view its details.

To retrieve a subscription's details, send a GET request to the /fabric/v4/streams/{streamId}/subscriptions/{subscriptionId} endpoint.
Sample cURL Request:
curl -X 'GET' 'https://api.equinix.com/fabric/v4/streams/{streamId}/subscriptions/{subscriptionId}' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <Bearer Token>'
Deleting a Subscription
- Portal
- API
-
From the Observability menu, click Data Streams.
-
Select a Stream from the Stream Inventory.

-
On the Stream Details page, click Subscriptions.

-
In the Subscription Details, click the options menu
..., and Delete Subscription.
To delete a subscription, send a DELETE request to the /fabric/v4/streams/{streamId}/subscriptions/{subscriptionId} endpoint.
Sample cURL Request:
curl -X 'DELETE' 'https://api.equinix.com/fabric/v4/streams/{streamId}/subscriptions/{subscriptionId}' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <Bearer Token>'