Skip to content

Create Project in Application

Request

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

Security
bearer-key
Path
orgUuidstringrequired

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

applicationUuidstringrequired

Application UUID (Administration > Applications)

Bodyapplication/jsonrequired
namestring(Project Name)required
Example:"My Project"
descriptionstring(Project Description)
Example:"Main scanning project for My Application"
POST
/api/v3.0/orgs/{orgUuid}/applications/{applicationUuid}/projects
{ "name": "My Project", "description": "Main scanning project for My Application" }

Responses

OK

Bodyapplication/json
supportTokenstring(Support Token)
Example:"1171c60d"
responseobject(ProjectDTOV3)

Project information

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" } }