create_project
Initialize new projects in QASE by defining project code, title, and access settings. Streamline test management integration for organized workflows.
Instructions
Create new project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
access | No | ||
code | Yes | ||
description | No | ||
group | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"access": {
"enum": [
"all",
"group",
"none"
],
"type": "string"
},
"code": {
"type": "string"
},
"description": {
"type": "string"
},
"group": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"code",
"title"
],
"type": "object"
}