This function returns the ID of the project with a given name or key.

projectId(nameOrKey) #Output: Number
Parser expressionDescription
%{projectId("My project")}

This example returns a number representing the ID of the project with the name My project

e.g. 10000

Parser expressionDescription
%{projectId("MP")}

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

Parameters used in this function

ParameterInput (data type)Description
nameOrKey

The name of the project or its key.

This function returns a

If there is no project with the given key or name, the function returns

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.


Use cases and examples




Status
Tech review

Style guide

Short description

Returns the ID of the project with a given key or name.

Output

Available since

3.0.3

Label