1. Projects
Pibox public API
0.6.2
  • 0.6.2
  • 0.6.3
  • v1
    • Teams
      • Get Teams
    • Groups
      • Get Groups
    • Projects
      • Create Project
        POST
      • Get Projects by Group
        POST
      • Get Non Group Projects
        POST
      • Get Chat History
        POST
      • Chat Message
        POST
    • Files
      • Create Folder
      • Get Files by Folder
      • Get Folder URL
      • Update Folder Properties
      • Delete File
      • Upload from External Source
      • Get File Info
      • Generate Track Tags
      • File Upload
    • Tasks
      • Get Task Template
      • Load Tasks from Template
      • Get Tasks by Folder
    • Webhooks
      • Create Webhook Endpoint
      • Get Webhook Endpoints
      • Delete Webhook Endpoint
  • Schemas
    • v1
      • Team
      • Track Info
      • Video Info
      • Image Info
      • AI Tags
      • Empty Schema
  1. Projects

Create Project

POST
https://api.pibox.com/v1/account/projects/create

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

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.pibox.com/v1/account/projects/create' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "title": "title",
    "team_id": 737
}'
Response Response Example
{
    "id": 166573
}
Modified at 2026-03-16 11:22:22
Previous
Get Groups
Next
Get Projects by Group
Built with