Create a new project
POST
/projects
Creates a new project with the given name and description. The creating user is automatically added as an admin member. Requires authentication.
Authorizations
tokenAuth
Personal access token authentication. Send via Authorization header: Authorization: Token vulcan_xxx. Tokens are SHA-256 hashed server-side (never stored in plaintext). Scopes: read (GET), write (mutations), admin (everything). Create tokens via Settings → API Tokens in the web UI.
Type
HTTP (token)
Request Body
application/json
JSON "project": { "name": "Red Hat Enterprise Linux 9", "description": "STIG development for RHEL 9" }
{
}
Responses
Project created
application/json
JSON "toast": { "title": "Project created.", "message": [ "Successfully created project Red Hat Enterprise Linux 9." ], "variant": "success" }, "redirect_url": "/projects/5"
{
}