Checks that a project name isn't in use. If the name isn't in use, the passed string is returned. If the name is in use, this operation attempts to generate a valid project name based on the one supplied, usually by adding a sequence number. If a valid project name cannot be generated, a 404 response is returned.Permissions required: None.
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request GET 'http://jira.local:8080/jira/rest//rest/api/3/projectvalidate/validProjectName?name='
Response Response Example
200 - Success
"Valid Project Name Example"
Request
Query Params
name
stringÂ
required
The project name.
Responses
🟢200Returned if the request is successful.
application/json
Body
stringÂ
optional
🟠400Returned if the request is invalid.
🟠401Returned if the authentication credentials are incorrect.
🟠404Returned if a valid project name cannot be generated.