Developers
API ReferenceTask Repeater

Creates a TaskRepeater resource

POST
/project/task-repeaters

Creates a TaskRepeater resource

Authorization<token>

Value for the Authorization header parameter.

In: header

Request Body

The new TaskRepeater resource

TypeScript Definitions

Use the request body type in TypeScript.

boardColumn*string
Formatuuid
name*string
Lengthlength <= 100
dateStartOffset*integer
Range0 <= value <= 365
Default0
dateEndOffset*integer
Range1 <= value <= 365
Default1
description?|
Lengthlength <= 100000
priority*string
Default"normal"

Value in

  • "low"
  • "normal"
  • "high"
dateStart*string
Formatdate-time
dateEnd*string
Formatdate-time
timezone*string
Lengthlength <= 60
frequency*integer
Range0 <= value
intervalType*string

Value in

  • "daily"
  • "weekday"
  • "monthly"
  • "yearly"
weekday?array<>

Response Body

curl -X POST "https://example.com/project/task-repeaters" \  -H "Content-Type: application/json" \  -d '{    "boardColumn": "4f54fe4b-83b5-4ea8-9520-0f5446263573",    "name": "string",    "dateStartOffset": 0,    "dateEndOffset": 1,    "priority": "low",    "dateStart": "2019-08-24T14:15:22Z",    "dateEnd": "2019-08-24T14:15:22Z",    "timezone": "string",    "frequency": 0,    "intervalType": "daily"  }'
{  "id": "string",  "taskTemplate": "https://example.com/",  "boardColumn": "https://example.com/",  "createdBy": "https://example.com/",  "dateStartOffset": 0,  "dateEndOffset": 1,  "dateStart": "2019-08-24T14:15:22Z",  "dateEnd": "2019-08-24T14:15:22Z",  "timezone": "string",  "lastExecution": "string",  "nextExecution": "2019-08-24T14:15:22Z",  "frequency": 0,  "intervalType": "string",  "weekday": [],  "createdAt": "2019-08-24T14:15:22Z",  "status": "string"}