1. Tasks
Pibox public API
  • v1
    • Teams
      • Invite Member
      • Get File Statuses
      • Get Teams
    • Groups
      • Get Groups
      • Get Group Info
      • Create Group
    • Projects
      • Get Project Info
      • Create Project
      • Get Projects by Group
      • Get Non Group Projects
      • Get Chat History
      • Chat Message
    • Account
      • Get Account Info
    • Files
      • Find Files
      • Get File Info
      • Create Folder
      • Get Files by Folder
      • Get Folder URL
      • Update Folder Properties
      • Delete File
      • Upload from External Source
      • Generate Track Tags
      • File Upload
    • Tasks
      • Get Task Template
        POST
      • Load Tasks from Template
        POST
      • Get Tasks by Folder
        POST
      • Create Tasks
        POST
    • Webhooks
      • Create Webhook Endpoint
      • Get Webhook Endpoints
      • Delete Webhook Endpoint
  • Webhooks
    • file.uploaded
    • file.renamed
    • file.status_changed
    • task.closed
    • List webhook endpoints
      GET
    • Create a webhook endpoint
      POST
    • Delete a webhook endpoint
      DELETE
  • Schemas
    • v1
      • Team
      • Track Info
      • Video Info
      • Image Info
      • AI Tags
      • Empty Schema
    • FileStatus
    • Error
    • ListEnvelope
    • ObjectEnvelope
    • TokenResponse
    • ClientRegistration
    • AuthServerMetadata
  1. Tasks

Create Tasks

POST
https://api.pibox.com/v1/tasks/create_list
Creates one or more tasks on a folder.
On success responds with the folder's full task list — the same payload as /v1/tasks/get_list_by_folder, not just the newly created tasks.

Request

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
All tasks of the folder after creation.
Bodyapplication/json

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠429
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.pibox.com/v1/tasks/create_list' \
--header 'Content-Type: application/json' \
--data '{
    "file_id": 620908,
    "tasks": [
        {
            "title": "Mix intro",
            "due_date": "2026-08-01T12:00:00Z",
            "assignee_id": 40641
        },
        {
            "title": "Master outro"
        }
    ]
}'
Response Response Example
{
    "data": [
        {
            "date_created": "2026-02-11T12:53:30Z",
            "file_id": 620908,
            "files": [],
            "id": 82600,
            "items": [],
            "object": "task",
            "status": "open",
            "title": "Mix intro"
        }
    ],
    "object": "list"
}
Modified at 2026-07-16 07:06:32
Previous
Get Tasks by Folder
Next
Create Webhook Endpoint
Built with