SCA API 2.0
//Create Project
Creates a new project within a given product. If the project already exists it returns the existing project.
Security
bearer-key
POST
{ "projectName": "Project A", "projectDescription": "Description for project" }
OK
- created: Indicates whether the requested project was successfully created or if it already exists. When “true”, this signifies the project was successfully created. When “false”, this indicates the project already exists
Example:
{ "created": "true" }
Response
{ "additionalData": { "created": "true" }, "supportToken": "1171c60d", "retVal": { "uuid": "123e4567-e89b-12d3-a456-426655440000", "name": "My Project", "path": "My Product", "productName": "My Product", "productUuid": "123e4567-e89b-12d3-a456-426655440000" } }