v1

latestOpenAPI 3.0.32026-07-241112213.6 KB
Board Tasks

Submit Batch Download

Submit a batch download request for Board tasks. This is an asynchronous operation that packages selected tasks into a ZIP file. Returns a downloadTaskId for status polling.

post/boards/tasks/batch-download/submit

Headers

Topview-Uidstring required

User ID

Authorizationstring required

API Key for authentication (Bearer token)

Request body

boardIdstring required

Board ID (required)

selectAllboolean

Whether to download all matching tasks (true) or specific tasks (false, default). When true, filter must be provided and taskIds is ignored.

taskIdsstring[] nullable

Task ID list to download. Required when selectAll=false. Ignored when selectAll=true.

excludeTaskIdsstring[] nullable

Task IDs to exclude from download. Only effective when selectAll=true. For tasks manually deselected by user.

Response

Batch download submitted successfully

codestring
messagestring

Example response

{
  "code": "200",
  "message": "Success"
}