1. Tasks
Pibox public API
0.6.3
  • 0.6.2
  • 0.6.3
  • v1
    • Teams
      • Get Teams
    • Groups
      • Get Groups
      • Get Group Info
    • 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
    • Webhooks
      • Create Webhook Endpoint
      • Get Webhook Endpoints
      • Delete Webhook Endpoint
  • Schemas
    • v1
      • Team
      • Track Info
      • Video Info
      • Image Info
      • AI Tags
      • Empty Schema
  1. Tasks

Load Tasks from Template

POST
/v1/tasks/load_from_template

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 '/v1/tasks/load_from_template' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "template_id": 60,
    "file_id": 620908
}'
Response Response Example
{
    "data": [
        {
            "date_created": "2026-02-11T12:53:30Z",
            "file_id": 620908,
            "files": [],
            "id": 82600,
            "items": [],
            "object": "task",
            "status": "open",
            "title": "1"
        },
        {
            "date_created": "2026-02-11T12:53:30Z",
            "file_id": 620908,
            "files": [],
            "id": 82601,
            "items": [],
            "object": "task",
            "status": "open",
            "title": "2"
        },
        {
            "date_created": "2026-02-11T12:53:30Z",
            "file_id": 620908,
            "files": [],
            "id": 82602,
            "items": [],
            "object": "task",
            "status": "open",
            "title": "3"
        },
        {
            "date_created": "2026-02-11T12:53:30Z",
            "file_id": 620908,
            "files": [],
            "id": 82603,
            "items": [],
            "object": "task",
            "status": "open",
            "title": "4"
        }
    ],
    "object": "list"
}
Modified at 2026-02-20 11:20:25
Previous
Get Task Template
Next
Get Tasks by Folder
Built with