Referencia de APITasks / Board Task
Create Board Task by taskid recurrence force create
← Back to full API reference
POST
/v1/tasks/board-task/:taskId/recurrence/force-createAuth requiredBoard task endpoints are used to create, update, and organize tasks across boards and columns.
- Validated by Zod schema: postForceCreateRecurrence.
Request details
Path params
| Field | Required | Description |
|---|---|---|
| taskId | Yes | Required path parameter. |
Query params
| Field | Required | Description |
|---|---|---|
| skipCollision | No | Type: string |
Default payloads
Path params
json
{
"taskId": 1
}Query
json
{
"skipCollision": "string"
}Body
json
{}Sample response
json
{
"success": true,
"message": "Sample response placeholder for POST /v1/tasks/board-task/:taskId/recurrence/force-create"
}