Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Syntax

getPortalForProject(projectKey)

...

Excerpt

Retrieves a portal ID by searching for the projectKey. The routine will return a null if the portal is not found.

...

Parameter name

Type

Required

Description

projectKey

String

Yes

Key The key of the selected project.

Return type

number

Examples

Code Block
number portalId = getPortalForProject("PROJECT");
 
print("Return " + portalId);

...