v1

latestOpenAPI 3.0.12026-08-06151265417.9 KB
Projects

Create Project in Application

Creates a new Project within the given Application. If the Project already exists it returns the existing Project.

post/api/v3.0/orgs/{orgUuid}/applications/{applicationUuid}/projects

Path parameters

orgUuidstring required

org UUID (from the Mend App: Administration General > Organization UUID).

applicationUuidstring required

Application UUID (Administration > Applications)

Request body

namestring required
descriptionstring

Example request

{
  "name": "My Project",
  "description": "Main scanning project for My Application"
}

Response

OK

supportTokenstring

Example response

{
  "supportToken": "1171c60d",
  "response": {
    "uuid": "123e4567-e89b-12d3-a456-426655440000",
    "name": "My Project",
    "path": "My Application",
    "applicationName": "My Application",
    "applicationUuid": "123e4567-e89b-12d3-a456-426655440000"
  }
}