Developers
API ReferenceTask Repeater

Updates the TaskRepeater resource

PATCH
/project/task-repeaters/{id}

Updates the TaskRepeater resource

Authorization<token>

Value for the Authorization header parameter.

In: header

Path Parameters

id*string

TaskRepeater identifier

Request Body

The updated TaskRepeater resource

TypeScript Definitions

Use the request body type in TypeScript.

createdBy?string
Formatuuid
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<>|null
status?string

Value in

  • "active"
  • "stopped"
dateStartOffset?integer
Range0 <= value <= 365
Default0
dateEndOffset?integer
Range1 <= value <= 365
Default1

Response Body

curl -X PATCH "https://example.com/project/task-repeaters/string" \  -H "Content-Type: application/json" \  -d '{}'
{  "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"}