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); |
...