getIssues

Syntax

Session.getIssues(brandName);

Parameters

brandName string

The name of the Brand.

Return value Array of EntIssue

Returns a list of all Issues of the provided Brand.

Description

The getIssues() method returns a list of all Issues of the provided Brand.

Examples

Get all Issues of a Brand

// Get all Issues of the Brand "WW News".
var issues = app.entSession.getIssues("WW News");
for (var i = 0; i < issues.length; i++) {
    alert("Issue: " + issues[i].name + " (ID: " + issues[i].id + ")");
}

Supported versions

Adobe Version Supported
2023
2024
2025
2026