Referencia de APITasks / Schedule
Create Schedule link
← Back to full API reference
POST
/v1/tasks/schedule/linkAuth required- Validated by Zod schema: postTaskScheduleLink.
Request details
Body fields
| Field | Required | Description |
|---|---|---|
| title | Yes | Type: string |
| description | Yes | Type: string |
| duration | No | Type: numberExample: 15 |
| spaceBetweenSchedules | No | Type: numberExample: 0 |
| boardId | Yes | Type: number |
| availableTime | Yes | Type: unknown |
| timezone | Yes | Type: string |
| form | Yes | Type: object |
| form.formSchema | No | Type: arrayExample: |
| form.formSchema[] | Yes | Type: object |
| form.formSchema[].label | Yes | Type: string |
| form.formSchema[].type | Yes | Type: enumExample: text |
| form.formSchema[].span | No | Type: number |
| form.formSchema[].options | No | Type: arrayExample: |
| form.formSchema[].options[] | Yes | Type: string |
| form.formSchema[].unique | No | Type: boolean |
| form.formSchema[].content | No | Type: string |
| form.uiSchema | No | Type: unknown |
| form.columns | No | Type: number |
| brand | No | Type: enumExample: gestiono |
Default payloads
Path params
json
{}Query
json
{}Body
json
{
"title": "string",
"description": "string",
"boardId": 1,
"availableTime": "value",
"timezone": "string",
"form": {
"formSchema": [
{
"label": "string",
"type": "text"
}
],
"uiSchema": "value",
"columns": 1
}
}Sample response
json
{
"success": true,
"message": "Sample response placeholder for POST /v1/tasks/schedule/link"
}