modpanel-config
  1. Projects
modpanel-config
  • Health
    • Liveliness
      GET
    • Readiness
      GET
  • Auth
    • Register
      • RegisterStart
      • RegisterVerify
      • RegisterComplete
    • Password
      • PasswordResetStart
      • PasswordResetVerify
      • PasswordResetConfirm
      • PasswordChange
    • Contacts
      • EmailChangeStart
      • EmailChangeVerify
      • PhoneChangeStart
      • PhoneChangeVerify
    • Login
      POST
    • Refresh
      POST
    • Logout
      POST
  • Profile
    • ProfileRead
      GET
    • ProfileUpdate
      PATCH
    • ProfileDelete
      DELETE
    • CityList
      GET
  • Projects
    • ProjectList
      GET
    • TagList
      GET
    • ProjectCreate
      POST
    • ProjectRead
      GET
    • ProjectUpdate
      PATCH
    • ProjectDelete
      DELETE
    • ProjectDuplicate
      POST
    • ProjectExport
      GET
    • ProjectImport
      POST
    • ProjectsArchivedRestore
      POST
    • ProjectsArchivedDelete
      DELETE
  • Public
    • PublicProject
      GET
    • PublicProjectExport
      GET
  • Schemas
    • Auth
      • Register
        • RegisterVerifyResponse
        • RegisterCompleteRequest
      • Password
        • PasswordResetVerifyResponse
        • PasswordResetConfirmRequest
        • PasswordChangeRequest
      • Contacts
        • EmailChangeRequest
        • PhoneChangeRequest
      • LoginRequest
      • AccessRefreshTokens
      • RefreshToken
      • AccessToken
      • EmailPhone
      • OTP
    • Profile
      • ProfileResponse
      • ProfileUpdateRequest
      • CityListItem
      • CityListResponse
    • Projects
      • ProjectCreateRequest
      • ProjectResponse
      • ProjectUpdateRequest
      • ProjectListItem
      • ProjectListResponse
      • TagList
    • Shared
      • PydanticValidationError
      • StatusOk
    • ApiError
  1. Projects

ProjectCreate

Developing
POST
/projects
Создание нового проекта

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

🟠422UnprocessableEntity
🟠401Unauthorized
🟠403
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/projects' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "tag": "string",
    "description": "string",
    "number": "string",
    "client": "string"
}'
Response Response Example
200 - Example 1
{}
Modified at 2026-02-04 14:34:55
Previous
TagList
Next
ProjectRead
Built with