Gestiono
Referencia de APITasks / Schedule

Create Schedule link

POST /v1/tasks/schedule/link • validated by `postTaskScheduleLink`

← Back to full API reference
POST/v1/tasks/schedule/linkAuthentication required
  • Validated by Zod schema: postTaskScheduleLink.

Request details

Path params

No path parameters for this endpoint.

Query params

No explicit query schema was captured for this endpoint.

Body fields

  • title (required)

    Type: string

  • description (required)

    Type: string

  • duration

    Type: number

    Example: 15

  • spaceBetweenSchedules

    Type: number

    Example: 0

  • boardId (required)

    Type: number

  • availableTime (required)

    Type: unknown

  • timezone (required)

    Type: string

  • form (required)

    Type: object

  • form.formSchema

    Type: array

    Example:

  • form.formSchema[] (required)

    Type: object

  • form.formSchema[].label (required)

    Type: string

  • form.formSchema[].type (required)

    Type: enum

    Example: text

  • form.formSchema[].span

    Type: number

    Example: 1

  • form.formSchema[].options (required)

    Type: unknown

  • form.uiSchema

    Type: object

  • form.columns

    Type: number

  • brand

    Type: enum

    Example: 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",
        "options": "value"
      }
    ],
    "uiSchema": {},
    "columns": 1
  }
}

Sample response

json
{
  "success": true,
  "message": "Sample response placeholder for POST /v1/tasks/schedule/link"
}

Test this endpoint now

Use your own credentials and execute a live request directly from this page.

1. Configure authentication for testing

You can test endpoints with signed API keys, a raw Authorization token, or browser cookies. Select one mode and fill in the required fields.

2. Select endpoint

POST/v1/tasks/schedule/linkAuthentication required

Group: Tasks / Schedule

POST /v1/tasks/schedule/link • validated by `postTaskScheduleLink`

  • Validated by Zod schema: postTaskScheduleLink.

Body fields

  • titlerequired
    Type: string
  • descriptionrequired
    Type: string
  • duration
    Type: number
    Ejemplo: 15
  • spaceBetweenSchedules
    Type: number
    Ejemplo: 0
  • boardIdrequired
    Type: number
  • availableTimerequired
    Type: unknown
  • timezonerequired
    Type: string
  • formrequired
    Type: object
  • form.formSchema
    Type: array
    Ejemplo:
  • form.formSchema[]required
    Type: object
  • form.formSchema[].labelrequired
    Type: string
  • form.formSchema[].typerequired
    Type: enum
    Ejemplo: text
  • form.formSchema[].span
    Type: number
    Ejemplo: 1
  • form.formSchema[].optionsrequired
    Type: unknown
  • form.uiSchema
    Type: object
  • form.columns
    Type: number
  • brand
    Type: enum
    Ejemplo: gestiono

3. Prepare request payload

4. Server response

Run a request to inspect the real-time response for your environment.