This function returns the ID of the project with a given name or key.
projectId(nameOrKey) #Output: Number
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
This example returns a number representing the ID of the project with the name My project e.g. 10000 |
|
This example returns a number representing the ID of the project with the key MP e.g. 10000. Please note that the ID of the project with the key MP is returned, if such a project key exists, even if there is a project with the name MP (see hints below). |
Additional information
Parameters used in this function
|
Parameter |
Input (data type) |
Description |
|---|---|---|
|
nameOrKey |
Text |
The name of the project or its key. |
Output
This function returns a number
If there is no project with the given key or name, the function returns null
Use this function to retrieve a project ID for a given project key or name.
Note that a partial project name will also work, but be aware that the function will return the ID of the project with an exact match of project key or project name, if existent, and otherwise will return the ID of the first project found.
Prefer project keys over project names, and prefer full project names over partial ones.
(books) Use cases and examples
| Use case |
|---|
| No content found. |