Returns a list of entities (e.g. landing pages, categories) that are currently using a given stream.
Requires the stream:usage:read or streams.read permission.
Request
GET /stream/{id}/usage
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | Yes | The ID of the stream to check usage for. |
Headers
| Header | Value |
|---|---|
Authorization | Bearer <token> |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Yes | The usage type to filter by. Accepted values: landingpage. |
Example Request
GET /stream/5/usage?type=landingpage
Authorization: Bearer <token>
Response
Returns a JSON array of entities that use this stream.
Example Response
[
{
"id": 12,
"title": "Summer Sale Landing Page"
}
]
